-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·68 lines (63 loc) · 1.56 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "wondphp/wondphp",
"type": "project",
"description": "The WondPHP Framework.",
"keywords": [
"framework",
"WondPHP"
],
"license": "MIT",
"require": {
"php": "8.0.*",
"ext-apcu": "*",
"nikic/fast-route": "^1.3",
"latte/latte": "^2.10",
"illuminate/database": "^8.0",
"filp/whoops": "*",
"predis/predis": "^1.1",
"jenssegers/mongodb": "^3.8",
"vlucas/phpdotenv": "^5.3",
"monolog/monolog": "^2.2",
"symfony/http-foundation": "^5.2",
"illuminate/pagination": "^8.31",
"illuminate/events": "^8.31",
"illuminate/translation": "^8.32",
"illuminate/cache": "^8.37",
"illuminate/redis": "^8.37",
"illuminate/filesystem": "^8.37",
"illuminate/view": "^8.37",
"symfony/var-dumper": "^5.2",
"league/flysystem": "1.1",
"illuminate/log": "^8.40",
"illuminate/validation": "^8.40",
"illuminate/encryption": "^8.47",
"ramsey/uuid": "^4.2.2",
"symfony/polyfill-apcu": "^1.23",
"guzzlehttp/guzzle": "^7.4",
"illuminate/http": "^8.68"
},
"replace": {
"symfony/polyfill-apcu": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php81": "*"
},
"autoload": {
"psr-4": {
"app\\": "app",
"WondPHP\\": "WondPHP/src/"
},
"classmap": [
"middleware",
"library"
],"files": [
"helper/functions.php"
]
},
"require-dev": {
"phpunit/phpunit": "^9"
}
}