2016-07-31 20:47:25 +02:00
|
|
|
{
|
|
|
|
|
"name": "zendframework/zend-expressive-skeleton",
|
|
|
|
|
"description": "Zend expressive skelton. Begin developing PSR-7 middleware applications in seconds",
|
|
|
|
|
"type": "project",
|
|
|
|
|
"homepage": "https://github.com/zendframework/zend-expressive-skeleton",
|
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
|
"authors": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Geert Eltink",
|
|
|
|
|
"homepage": "https://xtreamwayz.com/"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"extra": {
|
|
|
|
|
"branch-alias": {
|
|
|
|
|
"dev-master": "1.0-dev",
|
|
|
|
|
"dev-develop": "1.1-dev"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"require": {
|
|
|
|
|
"php": "^5.5 || ^7.0",
|
|
|
|
|
"roave/security-advisories": "dev-master",
|
|
|
|
|
"zendframework/zend-expressive": "^1.0",
|
|
|
|
|
"zendframework/zend-expressive-helpers": "^2.0",
|
|
|
|
|
"zendframework/zend-stdlib": "^2.7 || ^3.0",
|
|
|
|
|
"zendframework/zend-expressive-fastroute": "^1.0",
|
|
|
|
|
"zendframework/zend-servicemanager": "^2.7.3 || ^3.0",
|
|
|
|
|
"ocramius/proxy-manager": "^1.0 || ^2.0",
|
|
|
|
|
"dasprid/container-interop-doctrine": "^0.2.2",
|
|
|
|
|
"zendframework/zend-json": "^3.0",
|
|
|
|
|
"zendframework/zend-hydrator": "^2.2",
|
|
|
|
|
"zendframework/zend-filter": "^2.7"
|
|
|
|
|
},
|
|
|
|
|
"require-dev": {
|
|
|
|
|
"phpunit/phpunit": "^4.8",
|
|
|
|
|
"squizlabs/php_codesniffer": "^2.3",
|
|
|
|
|
"filp/whoops": "^1.1 || ^2.0"
|
|
|
|
|
},
|
|
|
|
|
"autoload": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"App\\": "src/App/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"autoload-dev": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"AppTest\\": "test/AppTest/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"check": [
|
|
|
|
|
"@cs",
|
|
|
|
|
"@test"
|
|
|
|
|
],
|
|
|
|
|
"cs": "phpcs",
|
|
|
|
|
"cs-fix": "phpcbf",
|
|
|
|
|
"serve": "php -S 0.0.0.0:8080 -t public/ public/index.php",
|
2016-08-01 18:33:33 +02:00
|
|
|
"test": "phpunit",
|
|
|
|
|
"doctrine": "doctrine"
|
2016-07-31 20:47:25 +02:00
|
|
|
}
|
|
|
|
|
}
|