Skip to content

Commit 39f9168

Browse files
committed
Try to keep previous PHP constraint
1 parent dedef50 commit 39f9168

File tree

11 files changed

+413
-295
lines changed

11 files changed

+413
-295
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
php-version: [ '8.1', '8.2', '8.3' ]
35+
php-version: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
3636
dependency-version: [ prefer-lowest, prefer-stable ]
3737
steps:
3838
-

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,4 @@ class MyEntrypointProvider implements EntrypointProvider
7171
- All functionality must be tested
7272

7373
## Supported PHP versions
74-
- v0.1: PHP 7.4 - 8.3
75-
- v0.2: PHP 8.1 - 8.3
74+
- PHP 7.4 - 8.3

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@
1212
"dead code"
1313
],
1414
"require": {
15-
"php": "^8.1",
15+
"php": "^7.4 || ^8.0",
1616
"phpstan/phpstan": "^1.11.0"
1717
},
1818
"require-dev": {
1919
"editorconfig-checker/editorconfig-checker": "^10.3.0",
2020
"ergebnis/composer-normalize": "^2.28",
2121
"phpstan/phpstan-phpunit": "^1.1.1",
2222
"phpstan/phpstan-strict-rules": "^1.2.3",
23-
"phpunit/phpunit": "^10.0 || ^11.0",
23+
"phpunit/phpunit": "^9.5.20",
2424
"shipmonk/name-collision-detector": "^2.0.0",
2525
"shipmonk/phpstan-rules": "^3.1",
2626
"slevomat/coding-standard": "^8.0.1",
27-
"symfony/contracts": "^3.0",
28-
"symfony/event-dispatcher": "^6.0 || ^7.0",
29-
"symfony/routing": "^6.0 || ^7.0"
27+
"symfony/contracts": "^2.5 || ^3.0",
28+
"symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
29+
"symfony/routing": "^5.4 || ^6.0 || ^7.0"
3030
},
3131
"autoload": {
3232
"psr-4": {

0 commit comments

Comments
 (0)