-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
94 lines (94 loc) · 2.62 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "marein/php-gaming-website",
"description": "A gaming website where people can play against each other.",
"license": "MIT",
"authors": [
{
"name": "Markus Reinhold",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://gaming-platform.github.io/satis/"
}
],
"autoload": {
"psr-4": {
"Gaming\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gaming\\Tests\\Unit\\": "tests/unit/"
}
},
"require": {
"php": "^8.3",
"ext-pcntl": "*",
"ext-posix": "*",
"ext-session": "*",
"doctrine/dbal": "^4.0",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/migrations": "^3.7",
"doctrine/orm": "^3.0",
"gaming-platform/api": "^1.2",
"jms/serializer": "^3.17",
"marein/php-nchan-client": "^3.1",
"marein/symfony-lock-doctrine-migrations-bundle": "^1.0",
"marein/symfony-standard-headers-csrf-bundle": "^1.0",
"nyholm/psr7": "^1.5",
"php-amqplib/php-amqplib": "^3.2",
"predis/predis": "^2.0",
"psr/clock": "^1.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^3.0",
"symfony/asset": "^7.0",
"symfony/asset-mapper": "^7.0",
"symfony/clock": "^7.0",
"symfony/config": "^7.0",
"symfony/console": "^7.0",
"symfony/finder": "^7.0",
"symfony/form": "^7.1",
"symfony/framework-bundle": "^7.0",
"symfony/http-client": "^7.0",
"symfony/http-foundation": "^7.0",
"symfony/http-kernel": "^7.0",
"symfony/lock": "^7.0",
"symfony/monolog-bundle": "^3.8",
"symfony/runtime": "^7.1",
"symfony/security-bundle": "^7.0",
"symfony/service-contracts": "^3.3",
"symfony/translation-contracts": "^3.5",
"symfony/twig-bundle": "^7.0",
"symfony/uid": "^7.0",
"symfony/validator": "^7.0",
"symfony/yaml": "^7.0",
"twig/twig": "^3.4"
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-webdriver": "^4.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-doctrine": "^1.3",
"phpunit/phpunit": "^10.3",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.7",
"symfony/debug-bundle": "^7.0",
"symfony/error-handler": "^7.0",
"symfony/stopwatch": "^7.0",
"symfony/web-profiler-bundle": "^7.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true,
"symfony/runtime": true
}
}
}