Skip to content

Commit

Permalink
feat: allow symfony 6.4 and 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim committed Dec 9, 2023
1 parent 6fb93fe commit 12e08cb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
php-version:
- "8.1"
- "8.2"
- "8.3"
dependencies:
- lowest
- highest
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@
"php": ">=8.1",
"doctrine/doctrine-bundle": "^2.8",
"symfony/psr-http-message-bridge": "2.*",
"symfony/routing": "^6.2 || ^6.3",
"symfony/routing": "^6.2 || ^6.3 || ^6.4 || ^7.0",
"doctrine/orm": "^2.11",
"shopware/app-php-sdk": "^2.0",
"symfony/doctrine-bridge": "^6.2 || ^6.3",
"symfony/http-client": "^6.2 || ^6.3",
"symfony/doctrine-bridge": "^6.2 || ^6.3 || ^6.4 || ^7.0",
"symfony/http-client": "^6.2 || ^6.3 || ^6.4 || ^7.0",
"nyholm/psr7": "^1.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"phpstan/phpstan": "^1.10.14",
"phpunit/phpunit": "^10.1",
"symfony/phpunit-bridge": "^6.2.10 || ^6.3",
"symfony/phpunit-bridge": "^6.2.10 || ^6.3 || ^6.4 || ^7.0",
"infection/infection": "^0.26.21"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion phpstan.neon.dist
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ parameters:
paths:
- src
ignoreErrors:
- '#Cannot call method .*Node\(\) on Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface\|null.#'
- '#Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface::scalarNode.#'

0 comments on commit 12e08cb

Please sign in to comment.