forked from ggelashvili/expennies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.02 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
{
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"require": {
"ext-pdo": "*",
"doctrine/dbal": "^3.4",
"doctrine/migrations": "^3.5",
"doctrine/orm": "^2.13",
"itsgoingd/clockwork": "^5.1",
"league/flysystem": "^3.0",
"league/mime-type-detection": "^1.11",
"php-di/php-di": "^6.4",
"slim/csrf": "^1.3",
"slim/psr7": "^1.5",
"slim/slim": "^4.10",
"slim/twig-view": "^3.3",
"symfony/cache": "^6.1",
"symfony/console": "^6.1",
"symfony/twig-bridge": "^6.1",
"symfony/webpack-encore-bundle": "^1.15",
"twig/intl-extra": "^3.4",
"twig/twig": "^3.4",
"vlucas/phpdotenv": "^5.4",
"vlucas/valitron": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}