Skip to content

Commit

Permalink
Merge pull request #537 from lcobucci/sf-7.1
Browse files Browse the repository at this point in the history
Fix compatibility with Symfony 7+
  • Loading branch information
lcobucci authored Nov 10, 2024
2 parents 41d3ae8 + 1909d01 commit c36e18c
Show file tree
Hide file tree
Showing 7 changed files with 116 additions and 124 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
- "locked"
php-version:
- "8.2"
- "8.3"
- "8.4"
operating-system: ["ubuntu-latest"]

steps:
Expand Down Expand Up @@ -112,7 +114,7 @@ jobs:
strategy:
matrix:
dependencies: ["locked"]
php-version: ["8.3"]
php-version: ["8.5"]
operating-system: ["ubuntu-latest"]

steps:
Expand Down
30 changes: 15 additions & 15 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@
],
"homepage": "https://github.com/lcobucci/di-builder",
"require": {
"php": "~8.2.0 || ~8.3.0",
"symfony/config": "^6.3.2",
"symfony/dependency-injection": "^6.3.2",
"symfony/expression-language": "^6.3.0",
"symfony/filesystem": "^6.3.1"
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"symfony/config": "^7.1",
"symfony/dependency-injection": "^7.1",
"symfony/expression-language": "^7.1",
"symfony/filesystem": "^7.1"
},
"require-dev": {
"infection/infection": "^0.29",
"lcobucci/coding-standard": "^11.0.0",
"mikey179/vfsstream": "^1.6.11",
"phpstan/extension-installer": "^1.2.0",
"phpstan/phpstan": "^1.10.13",
"phpstan/phpstan-deprecation-rules": "^1.1.3",
"phpstan/phpstan-phpunit": "^1.3.11",
"phpstan/phpstan-strict-rules": "^1.5.1",
"phpunit/phpunit": "^11.0",
"squizlabs/php_codesniffer": "^3.7.2",
"symfony/yaml": "^6.3.3"
"lcobucci/coding-standard": "^11.1",
"mikey179/vfsstream": "^1.6.12",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^11.4",
"squizlabs/php_codesniffer": "^3.10",
"symfony/yaml": "^7.1"
},
"replace": {
"symfony/polyfill-php71": "*",
Expand Down
Loading

0 comments on commit c36e18c

Please sign in to comment.