-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
164 lines (160 loc) · 5.42 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
{
"name": "netgen/media-site-legacy",
"type": "project",
"license": ["(GPL-2.0-only or proprietary)"],
"description": "Netgen Media Site (Powered by Netgen Layouts & Ibexa DXP)",
"homepage": "https://netgen.io",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
},
{
"name": "Ibexa dev team & Ibexa Community",
"homepage": "https://github.com/ibexa/core/contributors"
}
],
"require": {
"php": ">=8.1",
"ext-gd": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-xsl": "*",
"ext-xml": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-ctype": "*",
"ext-iconv": "*",
"http-interop/http-factory-guzzle": "^1.2",
"ibexa/oss": "~4.6.0",
"symfony/console": "5.4.*",
"symfony/dotenv": "5.4.*",
"symfony/flex": "^1.17|^2",
"symfony/framework-bundle": "5.4.*",
"symfony/runtime": "5.4.*",
"symfony/yaml": "5.4.*",
"novactive/ezseobundle": "^7.0.4",
"sentry/sentry-symfony": "^4.13",
"twig/twig": "^3.9",
"twig/intl-extra": "^3.9",
"tanoconsulting/ibexa-migration-bundle": "^1.0",
"mailerlite/mailerlite-api-v2-php-sdk": "^0.3.2",
"netgen/media-site-data": "^3.2",
"netgen/site-bundle": "^3.3",
"netgen/site-legacy-bundle": "^2.0",
"netgen/site-installer-bundle": "^3.1",
"netgen/admin-ui-bundle": "^3.0",
"netgen/ibexa-site-api": "^6.1.2",
"netgen/ibexa-search-extra": "^3.2.1",
"netgen/information-collection-bundle": "^3.0@alpha",
"netgen/ibexa-fieldtype-enhanced-link": "^1.1.2",
"netgen/ibexa-admin-ui-extra": "^1.3.0",
"netgen/toolbar": "^1.0",
"netgen/ibexa-scheduled-visibility": "^1.0",
"netgen/layouts-standard": "~1.4.0",
"netgen/layouts-ibexa": "~1.4.0",
"netgen/layouts-ibexa-site-api": "~1.4.0",
"netgen/layouts-ibexa-relation-list-query": "^1.4",
"netgen/layouts-ibexa-tags-query": "^1.4"
},
"require-dev": {
"symfony/debug-bundle": "5.4.*",
"symfony/maker-bundle": "^1.48",
"symfony/web-profiler-bundle": "5.4.*",
"netgen/git-hooks": "^2.5",
"deployer/recipes": "^6.2",
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/phpstan-doctrine": "^1.3",
"php-cs-fixer/shim": "^3.50",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "5.4.*",
"symfony/css-selector": "5.4.*",
"symfony/phpunit-bridge": "5.4.*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{ "type": "vcs", "url": "https://github.com/netgen/NovaeZSEOBundle.git" }
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ibexa/post-install": true,
"symfony/flex": true,
"symfony/runtime": true,
"netgen/git-hooks": true,
"phpstan/extension-installer": true,
"netgen/ezpublish-legacy-installer": true,
"*": false
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"ezpublish:legacy:assets_install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"ezpublish:legacybundles:install_extensions --relative": "symfony-cmd"
},
"project-scripts": [
"@php bin/console ngsite:symlink:project",
"@php bin/console ngsite:symlink:legacy",
"@php bin/console ezpublish:legacy:script bin/php/ezpgenerateautoloads.php"
],
"post-install-cmd": [
"@auto-scripts",
"@project-scripts"
],
"post-update-cmd": [
"@auto-scripts",
"@project-scripts"
],
"ibexa-assets": [
"@php bin/console bazinga:js-translation:dump public/assets --merge-domains",
"yarn ibexa"
],
"phpstan": "@php vendor/bin/phpstan analyse -c phpstan.neon --level=8 --ansi src tests"
},
"conflict": {
"symfony/symfony": "*",
"ibexa/core": "<4.6.10"
},
"extra": {
"ezpublish-legacy-dir": "ezpublish_legacy",
"symfony": {
"allow-contrib": true,
"require": "5.4.*",
"endpoint": [
"https://api.github.com/repos/ibexa/recipes/contents/index.json?ref=flex/main",
"https://api.github.com/repos/netgen/recipes/contents/index.json?ref=flex",
"https://api.github.com/repos/netgen-layouts/recipes/contents/index.json?ref=flex",
"flex://defaults"
],
"docker": false
},
"branch-alias": {
"dev-master": "3.2.x-dev"
}
}
}