-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
56 lines (56 loc) · 1.61 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
49
50
51
52
53
54
55
56
{
"require": {
"php": "^7.2.0",
"slim/slim": "^3.5",
"slim/twig-view": "^2.1",
"slim/flash": "^0.2.0",
"mikehaertl/phpwkhtmltopdf": "^2.1",
"ramsey/uuid": "^3.5",
"intervention/image": "^2.3",
"illuminate/database": "^5.3",
"illuminate/events": "^5.3",
"swiftmailer/swiftmailer": "^6.0",
"monolog/monolog": "^1.22",
"robmorgan/phinx": "^0.8.1",
"doctrine/dbal": "^2.5",
"slim/csrf": "^0.8.2",
"symfony/validator": "^3.4",
"symfony/property-access": "^3.4",
"symfony/yaml": "^3.4",
"dflydev/fig-cookies": "^1.0",
"akrabat/ip-address-middleware": "^1.0",
"predis/predis": "^1.1",
"enqueue/redis": "^0.8.37",
"symfony/translation": "^4.1",
"league/csv": "^9.0",
"phpoffice/phpspreadsheet": "^1.5",
"eluceo/ical": "^0.15.0",
"symfony/dotenv": "^5.0",
"league/flysystem": "^1.0",
"league/flysystem-aws-s3-v3": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": ["app/Support/helpers.php"]
},
"autoload-dev": {
"classmap": ["database/"],
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"fzaninotto/faker": "^1.8",
"phpunit/phpunit": "^7",
"guzzlehttp/guzzle": "^6.3",
"mockery/mockery": "^1.1",
"symfony/var-dumper": "^4.1"
},
"scripts": {
"post-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env'); \""
]
}
}