Skip to content

Commit 43d2c80

Browse files
authored
Merge pull request #67 from MacPaw/develop
Add support Symfony 70
2 parents 4dbb634 + 3e823c2 commit 43d2c80

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ jobs:
2222
- '6.1.*'
2323
- '6.2.*'
2424
include:
25-
- php: '7.4'
26-
symfony-versions: '^3.4'
27-
coverage: 'none'
2825
- php: '7.4'
2926
symfony-versions: '^4.4'
3027
coverage: 'none'
@@ -40,7 +37,7 @@ jobs:
4037
- description: 'Log Code Coverage'
4138
php: '8.2'
4239
coverage: 'xdebug'
43-
symfony-versions: '^6.2'
40+
symfony-versions: '^7.0'
4441

4542
name: PHP ${{ matrix.php }} Symfony ${{ matrix.symfony-versions }} ${{ matrix.description }}
4643
steps:
@@ -84,11 +81,11 @@ jobs:
8481
run: composer install
8582

8683
- name: Run PHPUnit tests
87-
run: vendor/bin/simple-phpunit
84+
run: vendor/bin/phpunit
8885
if: matrix.coverage == 'none'
8986

9087
- name: PHPUnit tests and Log Code coverage
91-
run: vendor/bin/simple-phpunit --coverage-clover=coverage.xml
88+
run: vendor/bin/phpunit --coverage-clover=coverage.xml
9289
if: matrix.coverage == 'xdebug'
9390

9491
- name: Run codecov

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@
3030
],
3131
"require": {
3232
"php": ">=7.4",
33-
"symfony/framework-bundle": "^3.4 || ^4.1.12 || ^5.0 || ^6.0"
33+
"symfony/framework-bundle": "^3.4 || ^4.1.12 || ^5.0 || ^6.0 || ^7.0"
3434
},
3535
"require-dev": {
3636
"ext-json": "*",
3737
"phpstan/phpstan": "1.9.*",
3838
"squizlabs/php_codesniffer": "3.7.*",
39-
"symfony/phpunit-bridge": "^3.4 || ^4.1.12 || ^5.0 || ^6.0",
39+
"symfony/phpunit-bridge": "^3.4 || ^4.1.12 || ^5.0 || ^6.0 || ^7.0",
4040
"phpunit/phpunit": "^8.5 || ^9.0",
41-
"symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
42-
"symfony/browser-kit": "^3.4 || ^4.4 || ^5.0 || ^6.0"
41+
"symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
42+
"symfony/browser-kit": "^3.4 || ^4.4 || ^5.0 || ^6.0 || ^7.0"
4343
},
4444
"autoload": {
4545
"psr-4": {

0 commit comments

Comments
 (0)