Skip to content

Commit

Permalink
[Maintenance] Update supported versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lchrusciel committed Jul 12, 2023
1 parent d9213e4 commit 7fb1369
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 24 deletions.
23 changes: 7 additions & 16 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,20 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0, 8.1]
symfony: [4.4.*, 5.4.*, 6.0.*]
phpunit: [^8.0, ^9.0, ^10.0]
php-matcher: [^5.0, ^6.0]
php: [8.0, 8.1, 8.2]
symfony: [5.4.*, 6.2.*, 6.3.*]
phpunit: [^9.0, ^10.0]
php-matcher: [^6.0]
exclude:
-
php: 8.0
php-matcher: ^5.0
-
php: 8.1
php-matcher: ^5.0
-
php: 7.4
symfony: 6.0.*
-
php: 7.4
phpunit: ^10.0
-
php: 8.0
phpunit: ^10.0
symfony: 6.2.*
-
symfony: 4.4.*
phpunit: ^10.0
php: 8.0
symfony: 6.3.*

steps:
- uses: "actions/checkout@v2"
Expand Down
21 changes: 13 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,26 @@
}
],
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.0",
"ext-json": "*",

"coduo/php-matcher": "^5.0 || ^6.0",
"coduo/php-matcher": "^6.0",
"openlss/lib-array2xml": "^1.0",
"doctrine/data-fixtures": "^1.2",
"doctrine/doctrine-bundle": "^1.6 || ^2.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.5",
"nelmio/alice": "^3.6",
"phpspec/php-diff": "^1.1",
"phpunit/phpunit": "^8.0 || ^9.0 || ^10.0",
"symfony/browser-kit": "^4.4 || ^5.4 || ^6.0",
"symfony/finder": "^4.4 || ^5.4 || ^6.0",
"symfony/framework-bundle": "^4.4 || ^5.4 || ^6.0",
"phpunit/phpunit": "^9.0 || ^10.0",
"symfony/browser-kit": "^5.4 || ^6.0",
"symfony/finder": "^5.4 || ^6.0",
"symfony/framework-bundle": "^5.4 || ^6.0",
"theofidry/alice-data-fixtures": "^1.0"
},
"require-dev": {
"phpstan/phpstan-strict-rules": "^0.12",
"phpstan/phpstan-webmozart-assert": "^0.12",
"symfony/serializer": "^4.4 || ^5.4 || ^6.0",
"symfony/serializer": "^5.4 || ^6.0",
"phpstan/phpstan": "^0.12"
},
"scripts": {
Expand Down Expand Up @@ -72,5 +72,10 @@
"branch-alias": {
"dev-master": "5.2-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}

0 comments on commit 7fb1369

Please sign in to comment.