-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
32 lines (31 loc) · 836 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
{
"name": "fisayoafolayan/voucher",
"description": "A Voucher generator app created with Slim Framework",
"keywords": ["framework", "slim"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.0.0",
"slim/slim": "^3.8",
"slim/twig-view": "^2.2",
"symfony/var-dumper": "^3.2",
"vlucas/phpdotenv": "^2.4",
"illuminate/database": "^5.6",
"robmorgan/phinx": "^0.10.5",
"awurth/slim-validation": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"guzzlehttp/guzzle": "^6.3"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}