-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
81 lines (81 loc) · 2.29 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
{
"name": "anzusystems/common-bundle",
"description": "Anzu common services, utils and helpers",
"type": "symfony-bundle",
"keywords": ["symfony", "anzusystems"],
"license": "Apache-2.0",
"authors": [
{
"name": "AnzuSystems Community",
"homepage": "https://github.com/orgs/anzusystems/people"
}
],
"require": {
"php": ">=8.3",
"ext-json": "*",
"ext-mongodb": "*",
"ext-pcntl": "*",
"ext-redis": "*",
"ext-dom": "*",
"ext-zend-opcache": "*",
"anzusystems/contracts": "^4.0",
"anzusystems/serializer-bundle": "^4.0",
"doctrine/dbal": "^4.0",
"doctrine/lexer": "^3.0",
"doctrine/orm": "^3.1",
"mongodb/mongodb": "^1.9",
"monolog/monolog": "^2.0|^3.0",
"nelmio/api-doc-bundle": "^4.8",
"symfony/cache": "^7.0",
"symfony/console": "^6.0|^7.0",
"symfony/dependency-injection": "^6.0|^7.0",
"symfony/dotenv": "^6.0|^7.0",
"symfony/event-dispatcher": "^6.0|^7.0",
"symfony/expression-language": "^6.0|^7.0",
"symfony/framework-bundle": "^6.0|^7.0",
"symfony/http-client-contracts": "^3.1",
"symfony/http-kernel": "^6.0|^7.0",
"symfony/lock": "^6.0|^7.0",
"symfony/messenger": "^6.0|^7.0",
"symfony/monolog-bundle": ">=3.7",
"symfony/polyfill-uuid": "^1.23",
"symfony/runtime": "^6.0|^7.0",
"symfony/security-bundle": "^6.0|^7.0",
"symfony/uid": "^6.0|^7.0",
"symfony/validator": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0",
"ext-libxml": "*"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.4",
"jetbrains/phpstorm-attributes": "^1.0",
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^8.0",
"symfony/test-pack": "^1.0",
"symplify/easy-coding-standard": "^11.0",
"vimeo/psalm": "^5.4"
},
"autoload": {
"psr-4": {
"AnzuSystems\\CommonBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AnzuSystems\\CommonBundle\\Tests\\": "tests",
"AnzuSystems\\CommonBundle\\Tests\\Data\\": "tests/data"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/runtime": true
}
}
}