Skip to content

Commit

Permalink
feat: Symfony 7 support (#31)
Browse files Browse the repository at this point in the history
* feat: Symfony 7 support

* chore: trigger ci

* fix

* support test-bundle 3.0

* fix psalm

---------

Co-authored-by: Tobias Nyholm <[email protected]>
  • Loading branch information
kbond and Nyholm authored Oct 8, 2024
1 parent 0bf9a22 commit ccd0e0f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ jobs:
max-parallel: 10
matrix:
php: [ '8.1', '8.2', '8.3']
sf_version: [ '5.4.*', '6.4.*']
sf_version: [ '5.4.*', '6.4.*', '7.*' ]
exclude:
- php: 8.1
sf_version: '7.*'

steps:
- name: Set up PHP
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"require": {
"php": ">=8.1",
"friendsofphp/proxy-manager-lts": "^1.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0"
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"nyholm/symfony-bundle-test": "^2.0",
"symfony/phpunit-bridge": "^6.4.11"
"nyholm/symfony-bundle-test": "^2.0 || ^3.0",
"symfony/phpunit-bridge": "^6.4.11 || ^7.1.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down
5 changes: 5 additions & 0 deletions psalm.baseline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
<code><![CDATA[children]]></code>
</UndefinedMethod>
</file>
<file src="src/DependencyInjection/HappyrServiceMockingExtension.php">
<InternalClass>
<code><![CDATA[Extension]]></code>
</InternalClass>
</file>
<file src="src/ServiceMock.php">
<UndefinedInterfaceMethod>
<code><![CDATA[getWrappedValueHolderValue]]></code>
Expand Down

0 comments on commit ccd0e0f

Please sign in to comment.