46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "slim/slim-skeleton",
|
|
"description": "A Slim Framework skeleton application for rapid development",
|
|
"keywords": ["microframework", "rest", "router", "psr7"],
|
|
"homepage": "http://github.com/slimphp/Slim-Skeleton",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Josh Lockhart",
|
|
"email": "info@joshlockhart.com",
|
|
"homepage": "http://www.joshlockhart.com/"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.5.0",
|
|
"slim/slim": "^3.1",
|
|
"slim/php-view": "^2.0",
|
|
"monolog/monolog": "^1.17",
|
|
"respect/validation": "^1.1",
|
|
"tuupola/cors-middleware": "^0.5.2",
|
|
"adbario/slim-secure-session-middleware": "^1.3"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": ">=4.8 < 6.0"
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\Service\\": "src/service",
|
|
"App\\Application\\": "src/application"
|
|
}
|
|
},
|
|
"config": {
|
|
"process-timeout" : 0
|
|
},
|
|
"scripts": {
|
|
"start": "php -S localhost:8080 -t public",
|
|
"test": "phpunit"
|
|
}
|
|
|
|
}
|