mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
Allow Symfony 6 and prepare CI
This commit is contained in:
parent
ca6ff4dba9
commit
9876dcfb4a
34 changed files with 174 additions and 159 deletions
29
.github/workflows/application.yml
vendored
29
.github/workflows/application.yml
vendored
|
|
@ -32,7 +32,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
php: ["8.0", "8.1"]
|
||||
symfony: ["^5.4"]
|
||||
symfony: ["^5.4", "^6.0"]
|
||||
api-platform: ["^2.7"]
|
||||
|
||||
include:
|
||||
|
|
@ -124,6 +124,21 @@ jobs:
|
|||
with:
|
||||
base: old-composer.lock
|
||||
|
||||
-
|
||||
name: Show diff in comment to PR
|
||||
uses: marocchino/sticky-pull-request-comment@v2
|
||||
if: ${{ steps.composer_diff.outputs.composer_diff_exit_code != 0 }}
|
||||
with:
|
||||
recreate: true
|
||||
header: composer-diff # Creates a collapsed comment with the report
|
||||
message: |
|
||||
<details>
|
||||
<summary>Composer package changes</summary>
|
||||
|
||||
${{ steps.composer_diff.outputs.composer_diff }}
|
||||
|
||||
</details>
|
||||
|
||||
-
|
||||
name: Check for security vulnerabilities
|
||||
run: symfony security:check
|
||||
|
|
@ -196,7 +211,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
php: ["8.0", "8.1"]
|
||||
symfony: ["^5.4"]
|
||||
symfony: ["^5.4", "^6.0"]
|
||||
api-platform: ["^2.7"]
|
||||
|
||||
include:
|
||||
|
|
@ -254,7 +269,7 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
php: ["8.0"]
|
||||
symfony: ["^5.4"]
|
||||
symfony: ["^5.4", "^6.0"]
|
||||
postgres: ["13.8"]
|
||||
node: ["16.x"]
|
||||
|
||||
|
|
@ -401,7 +416,7 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
php: ["8.0"]
|
||||
symfony: ["^5.4"]
|
||||
symfony: ["^5.4", "^6.0"]
|
||||
mariadb: ["10.4.10"]
|
||||
dbal: ["2", "3"]
|
||||
node: ["16.x"]
|
||||
|
|
@ -568,7 +583,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
php: ["8.0", "8.1"]
|
||||
symfony: ["^5.4"]
|
||||
symfony: ["^5.4", "^6.0"]
|
||||
api-platform: ["^2.7"]
|
||||
mysql: ["5.7", "8.0"]
|
||||
twig: ["3.x"]
|
||||
|
|
@ -776,8 +791,8 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
php: ["8.0", "8.1"]
|
||||
symfony: ["^5.4"]
|
||||
node: ["14.x", "16.x", "18.x"]
|
||||
symfony: ["^5.4", "^6.0"]
|
||||
node: ["16.x", "18.x"]
|
||||
mysql: ["5.7", "8.0"]
|
||||
|
||||
env:
|
||||
|
|
|
|||
2
.github/workflows/packages.yml
vendored
2
.github/workflows/packages.yml
vendored
|
|
@ -51,7 +51,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
php: ["8.0", "8.1"]
|
||||
symfony: ["^5.4"]
|
||||
symfony: ["^5.4", "^6.0"]
|
||||
package: "${{ fromJson(needs.list.outputs.packages) }}"
|
||||
|
||||
steps:
|
||||
|
|
|
|||
|
|
@ -85,49 +85,49 @@
|
|||
"sylius/resource": "^1.9",
|
||||
"sylius/resource-bundle": "^1.9",
|
||||
"sylius/theme-bundle": "^2.1.1",
|
||||
"symfony/asset": "^5.4",
|
||||
"symfony/config": "^5.4",
|
||||
"symfony/console": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/asset": "^5.4 || ^6.0",
|
||||
"symfony/config": "^5.4 || ^6.0",
|
||||
"symfony/console": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/deprecation-contracts": "^2.5",
|
||||
"symfony/doctrine-bridge": "^5.4",
|
||||
"symfony/event-dispatcher": "^5.4",
|
||||
"symfony/expression-language": "^5.4",
|
||||
"symfony/filesystem": "^5.4",
|
||||
"symfony/finder": "^5.4",
|
||||
"symfony/form": "^5.4",
|
||||
"symfony/framework-bundle": "^5.4",
|
||||
"symfony/http-foundation": "^5.4",
|
||||
"symfony/http-kernel": "^5.4",
|
||||
"symfony/intl": "^5.4",
|
||||
"symfony/messenger": "^5.4",
|
||||
"symfony/doctrine-bridge": "^5.4 || ^6.0",
|
||||
"symfony/event-dispatcher": "^5.4 || ^6.0",
|
||||
"symfony/expression-language": "^5.4 || ^6.0",
|
||||
"symfony/filesystem": "^5.4 || ^6.0",
|
||||
"symfony/finder": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0",
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"symfony/http-foundation": "^5.4 || ^6.0",
|
||||
"symfony/http-kernel": "^5.4 || ^6.0",
|
||||
"symfony/intl": "^5.4 || ^6.0",
|
||||
"symfony/messenger": "^5.4 || ^6.0",
|
||||
"symfony/monolog-bundle": "^3.5",
|
||||
"symfony/options-resolver": "^5.4",
|
||||
"symfony/password-hasher": "^5.4",
|
||||
"symfony/options-resolver": "^5.4 || ^6.0",
|
||||
"symfony/password-hasher": "^5.4 || 6.0",
|
||||
"symfony/polyfill-iconv": "^1.17",
|
||||
"symfony/polyfill-intl-icu": "^1.22",
|
||||
"symfony/polyfill-mbstring": "^1.17",
|
||||
"symfony/polyfill-php80": "^1.17",
|
||||
"symfony/process": "^5.4",
|
||||
"symfony/property-access": "^5.4",
|
||||
"symfony/property-info": "^5.4",
|
||||
"symfony/proxy-manager-bridge": "^5.4",
|
||||
"symfony/routing": "^5.4",
|
||||
"symfony/security-bundle": "^5.4",
|
||||
"symfony/security-core": "^5.4",
|
||||
"symfony/security-csrf": "^5.4",
|
||||
"symfony/security-guard": "^5.4",
|
||||
"symfony/security-http": "^5.4",
|
||||
"symfony/serializer": "^5.4",
|
||||
"symfony/string": "^5.4",
|
||||
"symfony/process": "^5.4 || ^6.0",
|
||||
"symfony/property-access": "^5.4 || ^6.0",
|
||||
"symfony/property-info": "^5.4 || ^6.0",
|
||||
"symfony/proxy-manager-bridge": "^5.4 || ^6.0",
|
||||
"symfony/routing": "^5.4 || ^6.0",
|
||||
"symfony/security-bundle": "^5.4 || ^6.0",
|
||||
"symfony/security-core": "^5.4 || ^6.0",
|
||||
"symfony/security-csrf": "^5.4 || ^6.0",
|
||||
"symfony/security-guard": "^5.4 || ^6.0",
|
||||
"symfony/security-http": "^5.4 || ^6.0",
|
||||
"symfony/serializer": "^5.4 || ^6.0",
|
||||
"symfony/string": "^5.4 || ^6.0",
|
||||
"symfony/swiftmailer-bundle": "^3.4",
|
||||
"symfony/templating": "^5.4",
|
||||
"symfony/translation": "^5.4",
|
||||
"symfony/templating": "^5.4 || ^6.0",
|
||||
"symfony/translation": "^5.4 || ^6.0",
|
||||
"symfony/translation-contracts": "^2.5",
|
||||
"symfony/twig-bundle": "^5.4",
|
||||
"symfony/validator": "^5.4",
|
||||
"symfony/twig-bundle": "^5.4 || ^6.0",
|
||||
"symfony/validator": "^5.4 || ^6.0",
|
||||
"symfony/webpack-encore-bundle": "^1.15",
|
||||
"symfony/yaml": "^5.4",
|
||||
"symfony/yaml": "^5.4 || ^6.0",
|
||||
"twig/intl-extra": "^2.12",
|
||||
"twig/twig": "^2.12 || ^3.3",
|
||||
"webmozart/assert": "^1.9",
|
||||
|
|
@ -229,11 +229,11 @@
|
|||
"rector/rector": "^0.12.20",
|
||||
"stripe/stripe-php": "^8.1",
|
||||
"sylius-labs/coding-standard": "^4.2",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/debug-bundle": "^5.4",
|
||||
"symfony/dotenv": "^5.4",
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/debug-bundle": "^5.4 || ^6.0",
|
||||
"symfony/dotenv": "^5.4 || ^6.0",
|
||||
"symfony/flex": "^1.7",
|
||||
"symfony/web-profiler-bundle": "^5.4",
|
||||
"symfony/web-profiler-bundle": "^5.4 || ^6.0",
|
||||
"vimeo/psalm": "^4.19"
|
||||
},
|
||||
"suggest": {
|
||||
|
|
|
|||
|
|
@ -30,8 +30,8 @@
|
|||
"stof/doctrine-extensions-bundle": "^1.4",
|
||||
"sylius/addressing": "^1.6",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"symfony/framework-bundle": "^5.4",
|
||||
"symfony/intl": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"symfony/intl": "^5.4 || ^6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"twig/twig": "^1.0 || ^3.0"
|
||||
|
|
@ -41,10 +41,10 @@
|
|||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/form": "^5.4",
|
||||
"symfony/validator": "^5.4"
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0",
|
||||
"symfony/validator": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@
|
|||
"knplabs/knp-menu-bundle": "^3.0",
|
||||
"sylius/core-bundle": "^1.6",
|
||||
"sylius/ui-bundle": "^1.6",
|
||||
"symfony/framework-bundle": "^5.4",
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"symfony/webpack-encore-bundle": "^1.15",
|
||||
"twig/intl-extra": "^2.12",
|
||||
"twig/twig": "^2.12"
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
"require-dev": {
|
||||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"symfony/dependency-injection": "^5.4"
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
"enshrined/svg-sanitize": "^0.15.4",
|
||||
"lexik/jwt-authentication-bundle": "^2.6",
|
||||
"sylius/core-bundle": "^1.7",
|
||||
"symfony/messenger": "^5.4"
|
||||
"symfony/messenger": "^5.4 || ^6.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"matthiasnoback/symfony-config-test": "^4.2",
|
||||
|
|
@ -38,10 +38,10 @@
|
|||
"phparkitect/phparkitect": "^0.2.9",
|
||||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/debug-bundle": "^5.4",
|
||||
"symfony/dotenv": "^5.4",
|
||||
"symfony/http-client": "^5.4",
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/debug-bundle": "^5.4 || ^6.0",
|
||||
"symfony/dotenv": "^5.4 || ^6.0",
|
||||
"symfony/http-client": "^5.4 || ^6.0",
|
||||
"symfony/webpack-encore-bundle": "^1.15",
|
||||
"theofidry/alice-data-fixtures": "^1.4"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -31,15 +31,15 @@
|
|||
"stof/doctrine-extensions-bundle": "^1.4",
|
||||
"sylius/attribute": "^1.6",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"symfony/framework-bundle": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"doctrine/orm": "^2.7",
|
||||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/form": "^5.4"
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
"php": "^8.0",
|
||||
"sylius/channel": "^1.6",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"symfony/framework-bundle": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"doctrine/orm": "^2.7",
|
||||
|
|
@ -36,9 +36,9 @@
|
|||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/form": "^5.4",
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0",
|
||||
"twig/twig": "^2.12"
|
||||
},
|
||||
"config": {
|
||||
|
|
|
|||
|
|
@ -64,11 +64,11 @@
|
|||
"sylius/theme-bundle": "^2.1.1",
|
||||
"sylius/ui-bundle": "^1.6",
|
||||
"sylius/user-bundle": "^1.6",
|
||||
"symfony/framework-bundle": "^5.4",
|
||||
"symfony/intl": "^5.4",
|
||||
"symfony/messenger": "^5.4",
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"symfony/intl": "^5.4 || ^6.0",
|
||||
"symfony/messenger": "^5.4 || ^6.0",
|
||||
"symfony/swiftmailer-bundle": "^3.4",
|
||||
"symfony/templating": "^5.4",
|
||||
"symfony/templating": "^5.4 || ^6.0",
|
||||
"symfony/webpack-encore-bundle": "^1.15",
|
||||
"winzou/state-machine-bundle": "^0.5"
|
||||
},
|
||||
|
|
@ -79,7 +79,7 @@
|
|||
"matthiasnoback/symfony-dependency-injection-test": "^4.2",
|
||||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"symfony/dependency-injection": "^5.4"
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"symfony/doctrine-bridge": "4.4.20 || 5.2.4 || 5.2.5"
|
||||
|
|
|
|||
|
|
@ -28,9 +28,9 @@
|
|||
"php": "^8.0",
|
||||
"sylius/currency": "^1.6",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"symfony/framework-bundle": "^5.4",
|
||||
"symfony/intl": "^5.4",
|
||||
"symfony/templating": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"symfony/intl": "^5.4 || ^6.0",
|
||||
"symfony/templating": "^5.4 || ^6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"twig/twig": "^1.0"
|
||||
|
|
@ -40,9 +40,9 @@
|
|||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/form": "^5.4",
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0",
|
||||
"twig/twig": "^2.12"
|
||||
},
|
||||
"config": {
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
"egulias/email-validator": "^3.0",
|
||||
"sylius/customer": "^1.6",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"symfony/framework-bundle": "^5.4",
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"webmozart/assert": "^1.8"
|
||||
},
|
||||
"conflict": {
|
||||
|
|
@ -50,9 +50,9 @@
|
|||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/form": "^5.4"
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -29,9 +29,9 @@
|
|||
"php": "^8.0",
|
||||
"sylius/inventory": "^1.6",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"symfony/framework-bundle": "^5.4",
|
||||
"symfony/templating": "^5.4",
|
||||
"symfony/validator": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"symfony/templating": "^5.4 || ^6.0",
|
||||
"symfony/validator": "^5.4 || ^6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"twig/twig": "^1.0"
|
||||
|
|
@ -41,8 +41,8 @@
|
|||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"twig/twig": "^2.12"
|
||||
},
|
||||
"config": {
|
||||
|
|
|
|||
|
|
@ -29,8 +29,8 @@
|
|||
"php": "^8.0",
|
||||
"sylius/locale": "^1.6",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"symfony/framework-bundle": "^5.4",
|
||||
"symfony/templating": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"symfony/templating": "^5.4 || ^6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"twig/twig": "^1.0"
|
||||
|
|
@ -41,8 +41,8 @@
|
|||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"twig/twig": "^2.12"
|
||||
},
|
||||
"config": {
|
||||
|
|
|
|||
|
|
@ -27,9 +27,9 @@
|
|||
"require": {
|
||||
"php": "^8.0",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"symfony/framework-bundle": "^5.4",
|
||||
"symfony/intl": "^5.4",
|
||||
"symfony/templating": "^5.4",
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"symfony/intl": "^5.4 || ^6.0",
|
||||
"symfony/templating": "^5.4 || ^6.0",
|
||||
"webmozart/assert": "^1.8"
|
||||
},
|
||||
"conflict": {
|
||||
|
|
@ -41,9 +41,9 @@
|
|||
"phpunit/phpunit": "^8.5",
|
||||
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
|
||||
"sylius/currency-bundle": "^1.6",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/form": "^5.4",
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0",
|
||||
"twig/twig": "^2.12"
|
||||
},
|
||||
"config": {
|
||||
|
|
|
|||
|
|
@ -33,8 +33,8 @@
|
|||
"sylius/money-bundle": "^1.6",
|
||||
"sylius/order": "^1.6",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"symfony/framework-bundle": "^5.4",
|
||||
"symfony/templating": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"symfony/templating": "^5.4 || ^6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"twig/twig": "^1.0 || ^3.0"
|
||||
|
|
@ -44,9 +44,9 @@
|
|||
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
|
||||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/form": "^5.4",
|
||||
"symfony/validator": "^5.4"
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0",
|
||||
"symfony/validator": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
"php": "^8.0",
|
||||
"sylius/payment": "^1.6",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"symfony/framework-bundle": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"twig/twig": "^3.0"
|
||||
|
|
@ -41,8 +41,8 @@
|
|||
"phpunit/phpunit": "^8.5",
|
||||
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
|
||||
"sylius/locale-bundle": "^1.6",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4"
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
},
|
||||
"require-dev": {
|
||||
"phpspec/phpspec": "^7.2",
|
||||
"symfony/dependency-injection": "^5.4"
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -32,17 +32,17 @@
|
|||
"sylius/locale-bundle": "^1.6",
|
||||
"sylius/product": "^1.6",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"symfony/framework-bundle": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"doctrine/orm": "^2.7",
|
||||
"mockery/mockery": "^1.4",
|
||||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/form": "^5.4",
|
||||
"symfony/validator": "^5.4"
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0",
|
||||
"symfony/validator": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
"sylius/promotion": "^1.6",
|
||||
"sylius/registry": "^1.5",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"symfony/framework-bundle": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"twig/twig": "^3.0"
|
||||
|
|
@ -45,10 +45,10 @@
|
|||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/form": "^5.4",
|
||||
"symfony/validator": "^5.4"
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0",
|
||||
"symfony/validator": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
"sylius/resource-bundle": "^1.7",
|
||||
"sylius/review": "^1.6",
|
||||
"sylius/user-bundle": "^1.6",
|
||||
"symfony/framework-bundle": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"twig/twig": "^3.0"
|
||||
|
|
@ -53,12 +53,12 @@
|
|||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/form": "^5.4",
|
||||
"symfony/security-bundle": "^5.4",
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0",
|
||||
"symfony/security-bundle": "^5.4 || ^6.0",
|
||||
"symfony/swiftmailer-bundle": "^3.1",
|
||||
"symfony/validator": "^5.4"
|
||||
"symfony/validator": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
"sylius/money-bundle": "^1.6",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"sylius/shipping": "^1.6",
|
||||
"symfony/framework-bundle": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"twig/twig": "^3.0"
|
||||
|
|
@ -45,10 +45,10 @@
|
|||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/form": "^5.4",
|
||||
"symfony/validator": "^5.4"
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0",
|
||||
"symfony/validator": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -29,8 +29,8 @@
|
|||
"php": "^8.0",
|
||||
"sylius/core-bundle": "^1.6",
|
||||
"sylius/ui-bundle": "^1.6",
|
||||
"symfony/framework-bundle": "^5.4",
|
||||
"symfony/security-bundle": "^5.4",
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"symfony/security-bundle": "^5.4 || ^6.0",
|
||||
"symfony/webpack-encore-bundle": "^1.15",
|
||||
"twig/intl-extra": "^2.12",
|
||||
"twig/twig": "^2.12"
|
||||
|
|
@ -41,7 +41,7 @@
|
|||
"mockery/mockery": "^1.4",
|
||||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"symfony/dependency-injection": "^5.4"
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
"sylius/registry": "^1.5",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"sylius/taxation": "^1.6",
|
||||
"symfony/framework-bundle": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"twig/twig": "^3.0"
|
||||
|
|
@ -43,9 +43,9 @@
|
|||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
|
||||
"symfony/browser-kit": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/form": "^5.4"
|
||||
"symfony/browser-kit": "^5.4 || ^6.0",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
"stof/doctrine-extensions-bundle": "^1.4",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"sylius/taxonomy": "^1.6",
|
||||
"symfony/framework-bundle": "^5.4"
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"twig/twig": "^3.0"
|
||||
|
|
@ -41,7 +41,7 @@
|
|||
"doctrine/orm": "^2.7",
|
||||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"symfony/dependency-injection": "^5.4"
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -35,11 +35,11 @@
|
|||
"sonata-project/block-bundle": "^3.20|^4.0",
|
||||
"sylius-labs/polyfill-symfony-event-dispatcher": "^1.0.1",
|
||||
"sylius/grid-bundle": "^1.8",
|
||||
"symfony/config": "^5.4",
|
||||
"symfony/framework-bundle": "^5.4",
|
||||
"symfony/security-core": "^5.4",
|
||||
"symfony/security-bundle": "^5.4",
|
||||
"symfony/templating": "^5.4",
|
||||
"symfony/config": "^5.4 || ^6.0",
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"symfony/security-core": "^5.4 || ^6.0",
|
||||
"symfony/security-bundle": "^5.4 || ^6.0",
|
||||
"symfony/templating": "^5.4 || ^6.0",
|
||||
"symfony/webpack-encore-bundle": "^1.15",
|
||||
"laminas/laminas-stdlib": "^3.2"
|
||||
},
|
||||
|
|
@ -51,8 +51,8 @@
|
|||
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
|
||||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/form": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/form": "^5.4 || ^6.0",
|
||||
"twig/twig": "^2.12"
|
||||
},
|
||||
"config": {
|
||||
|
|
|
|||
|
|
@ -45,8 +45,8 @@
|
|||
"sylius/mailer-bundle": "^1.4",
|
||||
"sylius/resource-bundle": "^1.7",
|
||||
"sylius/user": "^1.6",
|
||||
"symfony/framework-bundle": "^5.4",
|
||||
"symfony/password-hasher": "^5.4",
|
||||
"symfony/framework-bundle": "^5.4 || ^6.0",
|
||||
"symfony/password-hasher": "^5.4 || 6.0",
|
||||
"webmozart/assert": "^1.8"
|
||||
},
|
||||
"conflict": {
|
||||
|
|
@ -58,8 +58,8 @@
|
|||
"php-http/guzzle6-adapter": "^2.0",
|
||||
"phpspec/phpspec": "^7.2",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"symfony/dependency-injection": "^5.4",
|
||||
"symfony/security-bundle": "^5.4",
|
||||
"symfony/dependency-injection": "^5.4 || ^6.0",
|
||||
"symfony/security-bundle": "^5.4 || ^6.0",
|
||||
"symfony/swiftmailer-bundle": "^3.1"
|
||||
},
|
||||
"suggest": {
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
"php": "^8.0",
|
||||
"sylius/registry": "^1.5",
|
||||
"sylius/resource": "^1.7",
|
||||
"symfony/intl": "^5.4"
|
||||
"symfony/intl": "^5.4 || ^6.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpspec/phpspec": "^7.2"
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
"doctrine/collections": "^1.6",
|
||||
"sylius/registry": "^1.5",
|
||||
"sylius/resource": "^1.7",
|
||||
"symfony/validator": "^5.4"
|
||||
"symfony/validator": "^5.4 || ^6.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpspec/phpspec": "^7.2"
|
||||
|
|
|
|||
|
|
@ -29,8 +29,8 @@
|
|||
"require": {
|
||||
"php": "^8.0",
|
||||
"sylius/resource": "^1.7",
|
||||
"symfony/form": "^5.4",
|
||||
"symfony/http-foundation": "^5.4",
|
||||
"symfony/form": "^5.4 || ^6.0",
|
||||
"symfony/http-foundation": "^5.4 || ^6.0",
|
||||
"laminas/laminas-stdlib": "^3.2"
|
||||
},
|
||||
"require-dev": {
|
||||
|
|
|
|||
|
|
@ -50,15 +50,15 @@
|
|||
"sylius/taxation": "^1.6",
|
||||
"sylius/taxonomy": "^1.6",
|
||||
"sylius/user": "^1.6",
|
||||
"symfony/http-foundation": "^5.4",
|
||||
"symfony/mime": "^5.4",
|
||||
"symfony/string": "^5.2",
|
||||
"symfony/http-foundation": "^5.4 || ^6.0",
|
||||
"symfony/mime": "^5.4 || ^6.0",
|
||||
"symfony/string": "^5.2 || ^6.0",
|
||||
"webmozart/assert": "^1.8",
|
||||
"laminas/laminas-stdlib": "^3.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpspec/phpspec": "^7.2",
|
||||
"symfony/property-access": "^5.4"
|
||||
"symfony/property-access": "^5.4 || ^6.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
"require": {
|
||||
"php": "^8.0",
|
||||
"sylius/resource": "^1.7",
|
||||
"symfony/intl": "^5.4",
|
||||
"symfony/intl": "^5.4 || ^6.0",
|
||||
"laminas/laminas-stdlib": "^3.2"
|
||||
},
|
||||
"require-dev": {
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
"require": {
|
||||
"php": "^8.0",
|
||||
"sylius/resource": "^1.7",
|
||||
"symfony/intl": "^5.4",
|
||||
"symfony/intl": "^5.4 || ^6.0",
|
||||
"laminas/laminas-stdlib": "^3.2"
|
||||
},
|
||||
"require-dev": {
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
"php": "^8.0",
|
||||
"sylius/registry": "^1.5",
|
||||
"sylius/resource": "^1.7",
|
||||
"symfony/options-resolver": "^5.4"
|
||||
"symfony/options-resolver": "^5.4 || ^6.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpspec/phpspec": "^7.2"
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@
|
|||
"sylius-labs/polyfill-symfony-security": "^1.0",
|
||||
"sylius/resource": "^1.7",
|
||||
"symfony/polyfill-mbstring": "^1.17",
|
||||
"symfony/security-core": "^5.4"
|
||||
"symfony/security-core": "^5.4 || ^6.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpspec/phpspec": "^7.2"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue