Skip to content

Commit 6fb2705

Browse files
authored
Merge pull request #15 from osteel/feature/dependency-support
Broaden dependency version support
2 parents 504a042 + 323f311 commit 6fb2705

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
strategy:
2727
matrix:
2828
php-version:
29+
- "7.2"
30+
- "7.3"
2931
- "7.4"
3032
- "8.0"
3133
- "8.1"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
**/.DS_Store
2+
build
23
composer.lock
34
vendor
45
phpcs.xml

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
"require": {
2626
"php": "^7.2|^8.0",
2727
"ext-json": "*",
28-
"league/openapi-psr7-validator": "^0.16.1",
29-
"nyholm/psr7": "^1.4",
28+
"league/openapi-psr7-validator": "^0.16",
29+
"nyholm/psr7": "^1.0",
3030
"psr/http-message": "^1.0",
31-
"symfony/http-foundation": "^4.4 || ^5.3",
32-
"symfony/psr-http-message-bridge": "^2.1"
31+
"symfony/http-foundation": "^4.0 || ^5.0 || ^6.0",
32+
"symfony/psr-http-message-bridge": "^2.0"
3333
},
3434
"require-dev": {
3535
"phpunit/phpunit": ">=8.0",

0 commit comments

Comments
 (0)