[add] Slim skeleton
This commit is contained in:
36
api-payroll/composer.json
Normal file
36
api-payroll/composer.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": ">=4.8 < 6.0"
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Tests\\": "tests/"
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"process-timeout" : 0
|
||||
},
|
||||
"scripts": {
|
||||
"start": "php -S localhost:8080 -t public",
|
||||
"test": "phpunit"
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user