This repository has been archived by the owner on Oct 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·78 lines (78 loc) · 2.17 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
69
70
71
72
73
74
75
76
77
78
{
"description": "Club Management",
"authors": [
{
"name": "fbraem",
"email": "franky.braem@gmail.com"
}
],
"scripts": {
"phpstan": "vendor/bin/phpstan -c phpstan.neon"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"nesbot/carbon": "^2.56",
"league/flysystem": "1.1.4",
"league/commonmark": "2.1.*",
"league/csv": "^9.5",
"league/plates": "^3.3",
"ramsey/uuid": "^4",
"myclabs/php-enum": "^1.7",
"league/uri": "^6.4",
"nette/schema": "^1",
"ext-pdo": "*",
"ext-mbstring": "*",
"ext-json": "*",
"monolog/monolog": "2.3.5",
"latitude/latitude": "^4.2",
"relay/relay": "~2.0",
"nyholm/psr7": "^1.3",
"nyholm/psr7-server": "^1.0",
"laminas/laminas-httphandlerrunner": "2.1.*",
"symfony/routing": "^6.0",
"symfony/psr-http-message-bridge": "^2.0",
"neomerx/cors-psr7": "^2.0",
"filp/whoops": "^2.14",
"league/container": "^4.2",
"illuminate/collections": "^8.71",
"robmorgan/phinx": "^0.12.9",
"kwai/jsonapi": "^1.0",
"firebase/php-jwt": "^6.0",
"symfony/mailer": "^6.0",
"vlucas/phpdotenv": "^5.4",
"phpoption/phpoption": "^1.8"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^1.4",
"mockery/mockery": "^1.3",
"squizlabs/php_codesniffer": "3.*",
"symfony/var-dumper": "^5.2",
"phpmd/phpmd": "^2.10",
"friendsofphp/php-cs-fixer": "^3.2",
"pestphp/pest": "^1.20",
"symfony/http-client": "^6.0"
},
"autoload": {
"psr-4": {
"Kwai\\": "src/kwai/"
},
"files": [
"src/kwai/macros.php",
"src/kwai/Core/Infrastructure/Dependencies/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"App\\PHPStan\\": "src/phpstan/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}