Skip to content

Commit

Permalink
Merge pull request #146 from WandiParis/stable
Browse files Browse the repository at this point in the history
chore: symfony 6 support
  • Loading branch information
greg0ire authored May 24, 2023
2 parents 617e44d + ddb0830 commit 26eed5c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,16 @@ jobs:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "${{ inputs.composer-options }}"

- name: "Run PHPUnit"
- name: "Run PHPUnit for PHP 7x"
if: "${{ startsWith(matrix.php-version, '7') }}"
run: >
SYMFONY_DEPRECATIONS_HELPER="max[self]=0"
SYMFONY_PHPUNIT_VERSION=8.5.13
vendor/bin/simple-phpunit
- name: "Run PHPUnit for PHP 8.0"
if: "${{ ! startsWith(matrix.php-version, '7') }}"
run: >
SYMFONY_DEPRECATIONS_HELPER="max[self]=0"
SYMFONY_PHPUNIT_VERSION=9.5.28
vendor/bin/simple-phpunit
24 changes: 12 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,22 @@
"doctrine/inflector": "^1.4 || ^2.0"
},
"conflict": {
"symfony/form": "<3.2 || >=6.0 <999",
"symfony/validator": "<3.2 || >=6.0 <999"
"symfony/form": "<3.2 || >=7.0 <999",
"symfony/validator": "<3.2 || >=7.0 <999"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"symfony/config": "^4.2 || ^5.0",
"symfony/dependency-injection": "^4.2 || ^5.0",
"symfony/form": "^4.2.5 || ^5.0",
"symfony/framework-bundle": "^4.2 || ^5.0",
"symfony/http-kernel": "^4.2 || ^5.1.5",
"symfony/options-resolver": "^4.2 || ^5.0",
"symfony/phpunit-bridge": "^5.0",
"symfony/translation": "^4.2 || ^5.0",
"symfony/config": "^4.2 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^4.2 || ^5.0 || ^6.0",
"symfony/form": "^4.2.5 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^4.2 || ^5.0 || ^6.0",
"symfony/http-kernel": "^4.2 || ^5.1.5 || ^6.0",
"symfony/options-resolver": "^4.2 || ^5.0 || ^6.0",
"symfony/phpunit-bridge": "^5.0 || ^6.0",
"symfony/translation": "^4.2 || ^5.0 || ^6.0",
"symfony/translation-contracts": "^2.0",
"symfony/twig-bundle": "^4.2 || ^5.0",
"symfony/validator": "^4.3.6 || ^5.0",
"symfony/twig-bundle": "^4.2 || ^5.0 || ^6.0",
"symfony/validator": "^4.3.6 || ^5.0 || ^6.0",
"twig/twig": "^2.4.2 || ^3.0"
},
"suggest": {
Expand Down

0 comments on commit 26eed5c

Please sign in to comment.