Skip to content

Commit

Permalink
Merge pull request #53 from coldic3/require-supported-versions-only
Browse files Browse the repository at this point in the history
[Maintenance][GH] Require supported PHP and Sf versions only
  • Loading branch information
lchrusciel authored Mar 9, 2022
2 parents 8399ab9 + f7d4479 commit 143b005
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,10 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["7.2", "7.3", "7.4", "8.0", "8.1"]
symfony: ["~4.3", "~4.4", "~5.1", "~5.2", "~5.3", "~5.4"]
php: ["7.4", "8.0", "8.1"]
symfony: ["~4.4", "~5.4"]

include:
- php: "7.1"
symfony: "~4.3"

- php: "7.1"
symfony: "~4.4"

- php: "8.0"
symfony: "~6.0"

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
}
],
"require": {
"php": "^7.1.3|^8.0",
"symfony/event-dispatcher": "^4.3|^5.0|^6.0",
"symfony/property-access": "^4.3|^5.0|^6.0",
"symfony/expression-language": "^4.3|^5.0|^6.0"
"php": "^7.4|^8.0|^8.1",
"symfony/event-dispatcher": "^4.4|^5.4|^6.0",
"symfony/property-access": "^4.4|^5.4|^6.0",
"symfony/expression-language": "^4.4|^5.4|^6.0"
},
"suggest": {
"twig/twig": "Access the state machine in your twig templates (^2.10|^3.0)"
Expand Down

0 comments on commit 143b005

Please sign in to comment.