simple-php/composer.json
2019-12-24 00:31:29 +01:00

31 lines
600 B
JSON

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