-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
48 lines (48 loc) · 1.26 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "juststeveking/fox",
"description": "A Slim framework 3 bootstrap that is very foxy indeed.",
"license": "MIT",
"authors": [
{
"name": "Steve King",
"email": "juststeveking@gmail.com",
"homepage": "https://github.com/JustSteveKing/fox"
}
],
"require": {
"slim/slim": "^3.8",
"illuminate/database": "^5.4",
"slim/twig-view": "^2.2",
"monolog/monolog": "^1.23",
"swiftmailer/swiftmailer": "^6.0",
"symfony/console": "^3.3",
"robmorgan/phinx": "^0.8.1",
"hanneskod/classtools": "^1.1",
"hassankhan/config": "^0.10.0",
"symfony/translation": "^3.3",
"symfony/finder": "^3.3",
"slim/flash": "^0.2.0",
"twilio/sdk": "^5.13",
"predis/predis": "^1.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5",
"phpunit/phpunit": "^5.2"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": [
"php vendor/squizlabs/php_codesniffer/scripts/phpcs",
"php vendor/phpunit/phpunit/phpunit"
]
}
}