Skip to content

Commit

Permalink
feat: allow Symfony 6
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarlovi committed Dec 2, 2021
1 parent 32a5696 commit 24750bf
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"symfony/options-resolver": "^4.4 || ^5.0",
"symfony/serializer": "^4.4 || ^5.0"
"symfony/options-resolver": "^4.4 || ^5.0 || ^6.0",
"symfony/serializer": "^4.4 || ^5.0 || ^6.0"
},
"replace": {
"sigwin/xezilaires-core": "self.version",
Expand All @@ -35,11 +35,11 @@
"nyholm/symfony-bundle-test": "dev-master",
"phpoffice/phpspreadsheet": "^1.18",
"phpunit/phpunit": "^9.5",
"symfony/console": "^4.4 || ^5.0",
"symfony/framework-bundle": "^4.4 || ^5.0",
"symfony/property-access": "^4.4 || ^5.0",
"symfony/property-info": "^4.4 || ^5.0",
"symfony/validator": "^4.4 || ^5.0"
"symfony/console": "^4.4 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
"symfony/property-access": "^4.4 || ^5.0 || ^6.0",
"symfony/property-info": "^4.4 || ^5.0 || ^6.0",
"symfony/validator": "^4.4 || ^5.0 || ^6.0"
},
"suggest": {
"box/spout": "Read Excel files with Spout",
Expand Down
4 changes: 2 additions & 2 deletions src/Bridge/PhpSpreadsheet/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"require-dev": {
"doctrine/annotations": "^1.11",
"phpunit/phpunit": "^9.5",
"symfony/property-access": "^4.4 || ^5.0",
"symfony/property-info": "^4.4 || ^5.0"
"symfony/property-access": "^4.4 || ^5.0 || ^6.0",
"symfony/property-info": "^4.4 || ^5.0 || ^6.0"
},
"suggest": {
"sigwin/xezilaires-symfony": "Symfony bundle integration, bin/xezilaires use"
Expand Down
4 changes: 2 additions & 2 deletions src/Bridge/Spout/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"doctrine/annotations": "^1.11",
"nyholm/nsa": "^1.1",
"phpunit/phpunit": "^9.5",
"symfony/property-access": "^4.4 || ^5.0",
"symfony/property-info": "^4.4 || ^5.0"
"symfony/property-access": "^4.4 || ^5.0 || ^6.0",
"symfony/property-info": "^4.4 || ^5.0 || ^6.0"
},
"suggest": {
"sigwin/xezilaires-symfony": "Symfony bundle integration, bin/xezilaires use"
Expand Down
10 changes: 5 additions & 5 deletions src/Bridge/Symfony/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
"require": {
"php": "^7.3 || ^8.0",
"sigwin/xezilaires": "^0.4 || ^0.5",
"symfony/console": "^4.4 || ^5.0",
"symfony/framework-bundle": "^4.4 || ^5.0",
"symfony/property-access": "^4.4 || ^5.0",
"symfony/property-info": "^4.4 || ^5.0",
"symfony/validator": "^4.4 || ^5.0"
"symfony/console": "^4.4 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
"symfony/property-access": "^4.4 || ^5.0 || ^6.0",
"symfony/property-info": "^4.4 || ^5.0 || ^6.0",
"symfony/validator": "^4.4 || ^5.0 || ^6.0"
},
"conflict": {
"symfony/config": "< 4.4.12",
Expand Down
10 changes: 5 additions & 5 deletions src/Xezilaires/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@
],
"require": {
"php": "^7.3 || ^8.0",
"symfony/options-resolver": "^4.4 || ^5.0",
"symfony/serializer": "^4.4 || ^5.0"
"symfony/options-resolver": "^4.4 || ^5.0 || ^6.0",
"symfony/serializer": "^4.4 || ^5.0 || ^6.0"
},
"require-dev": {
"box/spout": "^3.0",
"doctrine/annotations": "^1.12",
"nyholm/nsa": "^1.1",
"phpunit/phpunit": "^9.5",
"symfony/console": "^4.4 || ^5.0",
"symfony/property-access": "^4.4 || ^5.0",
"symfony/property-info": "^4.4 || ^5.0",
"symfony/validator": "^4.4 || ^5.0"
"symfony/property-access": "^4.4 || ^5.0 || ^6.0",
"symfony/property-info": "^4.4 || ^5.0 || ^6.0",
"symfony/validator": "^4.4 || ^5.0 || ^6.0"
},
"suggest": {
"sigwin/xezilaires-phpspreadsheet": "Read Excel files with PhpSpreadsheet",
Expand Down

0 comments on commit 24750bf

Please sign in to comment.