-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (52 loc) · 1.35 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
{
"name": "musanna/expennies",
"description": "expences tracking app",
"type": "project",
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Musanna",
"email": "musannaal@gmail.com"
}
],
"require": {
"php": "^8.2",
"ext-pdo": "*",
"doctrine/orm": "^2.14",
"doctrine/dbal": "^3.6",
"doctrine/migrations": "^3.6",
"php-di/php-di": "^7.0",
"slim/slim": "^4.11",
"slim/psr7": "^1.6",
"symfony/cache": "^6.2",
"vlucas/phpdotenv": "^5.5",
"twig/twig": "^3.5",
"twig/intl-extra": "^3.5",
"symfony/webpack-encore-bundle": "^1.16",
"symfony/twig-bridge": "^6.2",
"symfony/console": "^6.2",
"slim/twig-view": "^3.3",
"vlucas/valitron": "^1.4",
"slim/csrf": "^1.3",
"league/flysystem": "^3.14",
"league/mime-type-detection": "^1.11",
"itsgoingd/clockwork": "^5.1",
"symfony/mailer": "^6.3",
"psr/simple-cache": "^3.0",
"symfony/rate-limiter": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"minimum-stability": "stable",
"prefer-stable": true
}