-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·37 lines (37 loc) · 935 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
{
"description": "Projeto de integração do Twig com SlimFramework",
"license": "MIT",
"authors": [
{
"name": "Douglas Fernando",
"email": "[email protected]"
}
],
"require": {
"slim/slim": "3.9",
"twig/twig": "^3.0",
"vlucas/phpdotenv": "^4.1",
"dopesong/slim-whoops": "^2.3",
"robmorgan/phinx": "^0.11.4",
"intervention/image": "^2.5",
"phpmailer/phpmailer": "^6.1",
"illuminate/database": "^6.16",
"illuminate/pagination": "^6.16",
"nesbot/carbon": "^2.31"
},
"autoload": {
"psr-4": {
"App\\": "app",
"Core\\": "src"
},
"files":[
"app/Functions/helpers.php"
]
},
"scripts":{
"server":"php -S localhost:8080 -t public",
"phinx" :"php vendor/bin/phinx"
},
"require-dev": {
}
}