Skip to content

Commit

Permalink
Feature/add support symfony 7 (#264)
Browse files Browse the repository at this point in the history
* feat: add support for "symfony/http-foundation" 7

* feat: add support for "symfony/http-foundation" 7

* feat: add support for "symfony/http-foundation" 7

* feat: add support for "symfony/http-foundation" 7

* feat: add support for "symfony/http-foundation" 7

---------

Co-authored-by: Christopher Georg <christopher.georg@sr-travel.de>
  • Loading branch information
Chris53897 and Chris8934 committed Feb 7, 2024
1 parent 80545e9 commit 8f11416
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/phpunit.yml
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
branches:
- "master"
- "master"

jobs:
phpunit:
Expand All @@ -22,6 +22,9 @@ jobs:
- "7.3"
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"
operating-system:
- "ubuntu-latest"

Expand Down
14 changes: 10 additions & 4 deletions composer.json
Expand Up @@ -47,14 +47,15 @@
"php-http/message": "^1.5",
"php-http/message-factory": "^1.1",
"php-http/discovery": "^1.14",
"symfony/http-foundation": "^2.1|^3|^4|^5|^6",
"symfony/http-foundation": "^2.1|^3|^4|^5|^6|^7",
"moneyphp/money": "^3.1|^4.0.3"
},
"require-dev": {
"omnipay/tests": "^4.1",
"php-http/mock-client": "^1",
"php-http/mock-client": "^1.6",
"php-http/guzzle7-adapter": "^1",
"squizlabs/php_codesniffer": "^3.5"
"squizlabs/php_codesniffer": "^3.8.1",
"http-interop/http-factory-guzzle": "^1.1"
},
"extra": {
"branch-alias": {
Expand All @@ -70,5 +71,10 @@
"fix-style": "phpcbf -p --standard=PSR2 src/"
},
"minimum-stability": "dev",
"prefer-stable": true
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}

0 comments on commit 8f11416

Please sign in to comment.