-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.2 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
{
"name": "ares-legacy/ares-core",
"description": "Ares core framework for building web api's.",
"keywords": [
"php",
"slim",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Dome",
"email": "[email protected]"
},
{
"name": "s1njar",
"email": "[email protected]"
}
],
"require": {
"ext-json": "*",
"cocur/slugify": "^4.0",
"illuminate/database": "^9.0@dev",
"illuminate/pagination": "^9.0@dev",
"league/container": "3.3.3",
"monolog/monolog": "^1.24",
"phlak/config": "^7.0",
"phpfastcache/phpfastcache": "^8.0",
"predis/predis": "^2.0@dev",
"rakit/validation": "^1.4",
"rbdwllr/psr-jwt": "^1.0",
"slim/psr7": "^1.3.0",
"slim/slim": "^4.6.0",
"statical/statical": "dev-master",
"symfony/console": "^5.2",
"tuupola/cors-middleware": "^1.2",
"vlucas/phpdotenv": "^5.0@dev"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.0"
}
},
"autoload": {
"psr-4": {
"Ares\\Framework\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "9.5"
}
}