simple-php/composer.json
2020-02-13 19:01:45 +01:00

35 lines
715 B
JSON

{
"name": "maartenvr98/framework",
"type": "project",
"description": "Another Cool Framework.",
"keywords": [
"framework"
],
"license": "MIT",
"require": {
"php": "^7.2",
"ext-json": "*",
"filp/whoops": "^2.6",
"kint-php/kint": "^3.3",
"php-di/php-di": "^6.0",
"twig/twig": "^3.0",
"vlucas/phpdotenv": "^4.1"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Runtime\\": "src/Runtime/",
"Cli\\": "src/Cli/",
"App\\": "app/"
},
"files": [
"src/Runtime/Helpers/helpers.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}