-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
150 lines (150 loc) · 5.03 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"cweagans/composer-patches": "^1.7.3",
"doctrine/dbal": "^4.2.2",
"doctrine/doctrine-bundle": "^2.13.2",
"doctrine/doctrine-migrations-bundle": "^3.4.0",
"doctrine/orm": "^3.3.1",
"phpdocumentor/reflection-docblock": "^5.6.1",
"phpstan/phpdoc-parser": "^2.0",
"symfony/asset": "7.2.*",
"symfony/asset-mapper": "7.2.*",
"symfony/console": "7.2.*",
"symfony/doctrine-messenger": "7.2.*",
"symfony/dotenv": "7.2.*",
"symfony/expression-language": "7.2.*",
"symfony/flex": "^2.4.7",
"symfony/form": "7.2.*",
"symfony/framework-bundle": "7.2.*",
"symfony/http-client": "7.2.*",
"symfony/intl": "7.2.*",
"symfony/mailer": "7.2.*",
"symfony/mime": "7.2.*",
"symfony/monolog-bundle": "^3.10",
"symfony/notifier": "7.2.*",
"symfony/process": "7.2.*",
"symfony/property-access": "7.2.*",
"symfony/property-info": "7.2.*",
"symfony/runtime": "7.2.*",
"symfony/security-bundle": "7.2.*",
"symfony/serializer": "7.2.*",
"symfony/stimulus-bundle": "^2.22.1",
"symfony/string": "7.2.*",
"symfony/translation": "7.2.*",
"symfony/twig-bundle": "7.2.*",
"symfony/ux-turbo": "^2.22.1",
"symfony/validator": "7.2.*",
"symfony/web-link": "7.2.*",
"symfony/yaml": "7.2.*",
"twig/extra-bundle": "^2.12|^3.18",
"twig/twig": "^2.12|^3.18"
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"infection/extension-installer": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
},
"bump-after-update": 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": "*",
"symfony/polyfill-php82": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"importmap:install": "symfony-cmd"
},
"dataDir": "mkdir -p var/data",
"codeceptInstall": "codecept build",
"post-install-cmd": [
"@auto-scripts",
"@dataDir",
"@codeceptInstall"
],
"post-update-cmd": [
"@auto-scripts",
"@dataDir",
"@codeceptInstall"
],
"qa": [
"codecept run Unit,Functional --coverage-phpunit --coverage-xml --xml junit.xml",
"phpstan --memory-limit=256M analyse",
"rector --dry-run",
"php-cs-fixer check",
"infection --coverage=tests/_output --skip-initial-tests"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"patches": {
"codeception/codeception": {
"Do not forward environment variables to the RunBefore extensions command": "patches/codeception/codeception/ext-runbefore-php.patch"
}
},
"composer-exit-on-patch-failure": true,
"symfony": {
"allow-contrib": false,
"require": "7.2.*"
}
},
"require-dev": {
"codeception/codeception": "^5.1.2",
"codeception/module-asserts": "^3.0",
"codeception/module-db": "^3.1.4",
"codeception/module-doctrine": "^3.1",
"codeception/module-phpbrowser": "^3.0.1",
"codeception/module-symfony": "^3.5",
"codeception/module-webdriver": "^4.0.2",
"friendsofphp/php-cs-fixer": "^3.68.1",
"infection/codeception-adapter": "^0.4.3",
"infection/infection": "^0.29.10",
"mcustiel/phiremock-codeception-extension": "^3.1",
"mcustiel/phiremock-codeception-module": "^2.0",
"mcustiel/phiremock-server": "^1.5.1",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan-doctrine": "^2.0.1",
"phpstan/phpstan-symfony": "^2.0.2",
"phpunit/phpunit": "^11.5.3",
"rector/rector": "^2.0.7",
"symfony/browser-kit": "7.2.*",
"symfony/css-selector": "7.2.*",
"symfony/debug-bundle": "7.2.*",
"symfony/maker-bundle": "^1.62.1",
"symfony/phpunit-bridge": "^7.2",
"symfony/stopwatch": "7.2.*",
"symfony/web-profiler-bundle": "7.2.*",
"symplify/vendor-patches": "^11.3.7"
}
}