-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
101 lines (101 loc) · 2.92 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
95
96
97
98
99
100
101
{
"name": "maciekiwaniuk/shop-system",
"description": "maciekiwaniuk/shop-system",
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.4",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-redis": "*",
"doctrine/annotations": "^2.0",
"doctrine/doctrine-bundle": "^2.13",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^3.3",
"lexik/jwt-authentication-bundle": "^2.21",
"nelmio/api-doc-bundle": "^4.33",
"php-amqplib/php-amqplib": "^2.0",
"symfony/asset": "^7.2",
"symfony/cache": "^7.2",
"symfony/console": "^7.2",
"symfony/dotenv": "^7.2",
"symfony/flex": "^2.4",
"symfony/framework-bundle": "^7.2",
"symfony/mailer": "^7.2",
"symfony/messenger": "^7.2",
"symfony/monolog-bundle": "^3.10",
"symfony/property-access": "^7.2",
"symfony/runtime": "^7.2",
"symfony/serializer": "^7.2",
"symfony/string": "^7.2",
"symfony/twig-bundle": "^7.2",
"symfony/uid": "^7.2",
"symfony/validator": "^7.2",
"symfony/yaml": "^7.2"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.7",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^9.6",
"qossmic/deptrac": "^2.0",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.11",
"symfony/browser-kit": "^7.2",
"symfony/css-selector": "^7.2",
"symfony/maker-bundle": "^1.60",
"symfony/phpunit-bridge": "^7.2",
"symfony/stopwatch": "^7.2",
"symfony/web-profiler-bundle": "^7.2"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^7.2"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
}
}