forked from nevercodealone/cms-symfony-sulu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
187 lines (187 loc) · 6.75 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"name": "sulu/skeleton",
"license": "MIT",
"type": "project",
"description": "Project template for starting your new project based on the Sulu content management system",
"homepage": "https://sulu.io/",
"keywords": [
"symfony",
"sulu",
"sulucms",
"cms",
"web-application",
"platform",
"data-managment",
"project-template"
],
"authors": [
{
"name": "Sulu Community",
"homepage": "https://github.com/sulu/skeleton/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/sulu/skeleton/issues",
"source": "https://github.com/sulu/skeleton",
"docs": "http://docs.sulu.io/"
},
"require": {
"php": "8.1.*",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-zip": "*",
"dantleech/phpcr-migrations-bundle": "^1.2",
"dg/twitter-php": "^4.1",
"doctrine/dbal": "^2.10",
"doctrine/doctrine-bundle": "^2.3",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"doctrine/doctrine-migrations-bundle": "^3.1",
"friendsofsymfony/http-cache-bundle": "^2.10",
"friendsofsymfony/rest-bundle": "^3.4",
"google/apiclient": "^2.9",
"handcraftedinthealps/zendsearch": "^2.1",
"jackalope/jackalope-doctrine-dbal": "^1.6",
"mashape/unirest-php": "^3.0",
"stof/doctrine-extensions-bundle": "^1.7",
"sulu/form-bundle": "^2.1",
"sulu/headless-bundle": "^0.10.0",
"sulu/sulu": "~2.5.0",
"symfony/config": "^5.4",
"symfony/dotenv": "^5.4",
"symfony/flex": "^1.12",
"symfony/framework-bundle": "^5.4",
"symfony/monolog-bridge": "^5.4",
"symfony/monolog-bundle": "^3.7",
"symfony/security-bundle": "^5.4",
"symfony/twig-bundle": "^5.4",
"symfony/webpack-encore-bundle": "^1.16",
"twig/extra-bundle": "^3.3",
"twig/intl-extra": "^3.3"
},
"require-dev": {
"captainhook/captainhook": "^5.9",
"codeception/codeception": "^5.0",
"codeception/module-asserts": "*",
"codeception/module-phpbrowser": "*",
"codeception/module-rest": "*",
"codeception/module-symfony": "*",
"codeception/module-webdriver": "*",
"phpcr/phpcr-shell": "^1.3",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-doctrine": "^1.3",
"rector/rector": "^0.17",
"sclable/xml-lint": "^0.5.0",
"squizlabs/php_codesniffer": "^3.6",
"symfony/debug-bundle": "^5.4",
"symfony/error-handler": "^5.4",
"symfony/phpunit-bridge": "^5.4",
"symfony/thanks": "^1.2",
"symfony/web-profiler-bundle": "^5.4"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"bin/websiteconsole cache:clear": "php-script",
"bin/adminconsole sulu:media:init": "php-script",
"bin/adminconsole massive:search:init": "php-script"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"post-root-package-install": [
"@php -r \"file_put_contents('.env.local', 'APP_ENV=dev' . PHP_EOL);\"",
"@php -r \"file_put_contents('.env', str_replace('APP_SECRET=', 'APP_SECRET=' . bin2hex(random_bytes(16)), file_get_contents('.env')));\""
],
"post-create-project-cmd": [
"@php -r \"file_put_contents('.gitignore', str_replace(['composer.lock' . PHP_EOL, 'symfony.lock' . PHP_EOL, 'package-lock.json' . PHP_EOL], ['', '', ''], file_get_contents('.gitignore')));\"",
"@php bin/adminconsole sulu:admin:info --ansi"
],
"bootstrap-test-environment": [
"@php bin/adminconsole doctrine:database:drop --if-exists --force --env test",
"@php bin/adminconsole doctrine:database:create --env test",
"@php bin/adminconsole doctrine:schema:create --env test"
],
"test": "@php bin/phpunit",
"test-with-coverage": "@test --coverage-php var/reports/coverage.php --coverage-cobertura=var/reports/cobertura-coverage.xml --coverage-html var/reports/html --log-junit var/reports/junit.xml",
"lint": [
"@phpstan",
"@lint-php-cs",
"@lint-rector",
"@lint-twig",
"@lint-yaml",
"@lint-container",
"@lint-composer",
"@lint-doctrine"
],
"security-check": "@composer audit",
"fix": [
"@rector",
"@php-cs-fix"
],
"phpstan": [
"@php bin/websiteconsole cache:warmup --env=dev",
"@php vendor/bin/phpstan analyze"
],
"rector": [
"@php vendor/bin/rector process"
],
"lint-rector": [
"@php bin/websiteconsole cache:warmup --env=dev",
"@php vendor/bin/rector process --dry-run"
],
"php-cs-fix": "@php vendor/bin/php-cs-fixer fix",
"lint-php-cs": "@php vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"lint-composer": "@composer validate --no-check-publish --strict",
"lint-twig": "@php bin/console lint:twig templates/",
"lint-yaml": "@php bin/console lint:yaml config/ --parse-tags",
"lint-container": [
"@php bin/console lint:container --env dev",
"@php bin/console lint:container --env test",
"@php bin/console lint:container --env stage",
"@php bin/console lint:container --env prod"
],
"lint-doctrine": [
"@php bin/console doctrine:schema:validate --skip-sync",
"@php bin/console doctrine:ensure-production-settings --env stage",
"@php bin/console doctrine:ensure-production-settings --env prod"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/thanks": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"extra": {
"symfony": {
"allow-contrib": true
}
}
}