-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
167 lines (167 loc) · 6.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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "opifex/symfony",
"description": "An example application using Symfony Framework",
"type": "project",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.4",
"ext-amqp": "*",
"ext-apcu": "*",
"ext-ctype": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-pdo_pgsql": "*",
"ext-redis": "*",
"ext-xsl": "*",
"ext-zend-opcache": "*",
"ext-zip": "*",
"doctrine/doctrine-bundle": "^2.13",
"doctrine/doctrine-migrations-bundle": "^3.4",
"doctrine/orm": "^3.3",
"lcobucci/jwt": "^5.5",
"nelmio/api-doc-bundle": "^4.37",
"symfony/amqp-messenger": "7.2.*",
"symfony/asset": "7.2.*",
"symfony/console": "7.2.*",
"symfony/doctrine-messenger": "7.2.*",
"symfony/dotenv": "7.2.*",
"symfony/expression-language": "7.2.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "7.2.*",
"symfony/http-client": "7.2.*",
"symfony/intl": "7.2.*",
"symfony/mailer": "7.2.*",
"symfony/messenger": "7.2.*",
"symfony/monolog-bundle": "^3.10",
"symfony/notifier": "7.2.*",
"symfony/property-access": "7.2.*",
"symfony/runtime": "7.2.*",
"symfony/scheduler": "7.2.*",
"symfony/security-bundle": "7.2.*",
"symfony/serializer": "7.2.*",
"symfony/stopwatch": "7.2.*",
"symfony/translation": "7.2.*",
"symfony/twig-bundle": "7.2.*",
"symfony/uid": "7.2.*",
"symfony/validator": "7.2.*",
"symfony/workflow": "7.2.*",
"symfony/yaml": "7.2.*",
"twig/twig": "^3.20",
"twig/cssinliner-extra": "^3.20",
"twig/extra-bundle": "^3.20",
"twig/inky-extra": "^3.20"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"exclude-from-classmap": [
"config/",
"tests/"
]
},
"autoload-dev": {
"psr-4": {
"Reports\\": "config/markup/Reports",
"Standards\\": "config/markup/Standards",
"Tests\\": "tests"
}
},
"scripts": {
"auto-analyze": [
"composer validate --strict",
"phpcs --standard=config/markup/phpcs.xml",
"phpstan --configuration=config/markup/phpstan.neon --memory-limit=4G --no-progress"
],
"auto-migrate": [
"bin/console doctrine:database:create --if-not-exists",
"bin/console doctrine:migrations:migrate"
],
"auto-quality": [
"bin/console cache:clear -e test",
"bin/console lint:yaml src config -e test",
"bin/console lint:twig src -e test",
"bin/console lint:container -e test",
"bin/console doctrine:mapping:info -e test",
"bin/console doctrine:database:drop -e test --if-exists --force",
"bin/console doctrine:database:create -e test",
"bin/console doctrine:migration:migrate -e test -n",
"codecept clean",
"codecept run Unit,Functional --coverage-html --coverage-xml --fail-fast"
],
"auto-scripts": {
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"cache:clear": "symfony-cmd"
},
"debug-composer": "composer validate --strict && composer audit && composer diagnose",
"debug-container": "bin/console lint:container",
"debug-recipes": "composer symfony:recipes",
"debug-router": "bin/console debug:router | grep -v '^ _'",
"fix-style": "phpcbf --standard=config/markup/phpcs.xml",
"load-fixtures": "bin/console doctrine:fixtures:load -n",
"migration-create": "bin/console doctrine:migration:generate",
"migration-down": "bin/console doctrine:migrations:migrate prev",
"migration-up": "bin/console doctrine:migrations:migrate",
"run-unit": "codecept run Unit --coverage-html",
"post-install-cmd": "@auto-scripts",
"post-update-cmd": "@auto-scripts"
},
"scripts-descriptions": {
"auto-analyze": "Analyze code quality with Composer, PHPCS and PHPStan",
"auto-migrate": "Set up database migrations and messenger transports",
"auto-quality": "Run quality checks for Symfony application",
"auto-scripts": "Install public assets and clear the cache",
"debug-composer": "Audit composer security vulnerability advisories",
"debug-container": "List registered services for application",
"debug-recipes": "List available recipes for application",
"debug-router": "List registered routes for application",
"fix-style": "Automatically fix PHP code style violations",
"load-fixtures": "Load data fixtures into database",
"migration-create": "Create new blank database migration file",
"migration-down": "Rollback database schema to previous migration",
"migration-up": "Update database schema to latest migration",
"run-unit": "Run codeception unit test suite with code coverage report"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.2.*"
}
},
"require-dev": {
"codeception/codeception": "^5.2",
"codeception/module-asserts": "^3.0",
"codeception/module-cli": "^2.0",
"codeception/module-doctrine": "^3.1",
"codeception/module-rest": "^3.4",
"codeception/module-symfony": "^3.5",
"doctrine/doctrine-fixtures-bundle": "^4.0",
"fakerphp/faker": "^1.24",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"squizlabs/php_codesniffer": "^3.11",
"symfony/debug-bundle": "7.2.*",
"symfony/web-profiler-bundle": "7.2.*"
}
}