-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1009 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "delmobispo/template-php-dev-mircro-frameworks",
"description": "Bootstrap com junção de micro frameworks php",
"minimum-stability": "stable",
"require": {
"php": ">=7",
"slim/slim": "^3.9",
"illuminate/database": "^5.6",
"illuminate/events": "^5.6",
"vlucas/phpdotenv": "^2.4",
"davidepastore/slim-validation": "^0.5.0",
"firebase/php-jwt": "^5.0",
"tuupola/slim-jwt-auth": "^3.0",
"tuupola/cors-middleware": "^0.7.0",
"robmorgan/phinx": "^0.9.2"
},
"require-dev": {
"phpunit/phpunit": "^7.1"
},
"autoload": {
"psr-4": {"App\\": "./src/main"}
},
"autoload-dev": {
"psr-4": {"App\\Test\\": "./src/tests"}
},
"scripts": {
"tests": "phpunit",
"phinx": "vendor/bin/phinx"
},
"license": "MIT",
"authors": [
{
"name": "Delmo Bispo",
"email": "delmo.xsalada@gmail.com"
}
]
}