8000 Feature/add support symfony 7 (#264) · thephpleague/omnipay-common@8f11416 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8f11416

Browse files
Feature/add support symfony 7 (#264)
* 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>
1 parent 80545e9 commit 8f11416

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

.github/workflows/phpunit.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
push:
66
branches:
7-
- "master"
7+
- "master"
88

99
jobs:
1010
phpunit:
@@ -22,6 +22,9 @@ jobs:
2222
- "7.3"
2323
- "7.4"
2424
- "8.0"
25+
- "8.1"
26+
- "8.2"
27+
- "8.3"
2528
operating-system:
2629
- "ubuntu-latest"
2730

composer.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,15 @@
4747
"php-http/message": "^1.5",
4848
"php-http/message-factory": "^1.1",
4949
"php-http/discovery": "^1.14",
50-
"symfony/http-foundation": "^2.1|^3|^4|^5|^6",
50+
"symfony/http-foundation": "^2.1|^3|^4|^5|^6|^7",
5151
"moneyphp/money": "^3.1|^4.0.3"
5252
},
5353
"require-dev": {
5454
"omnipay/tests": "^4.1",
55-
"php-http/mock-client": "^1",
55+
"php-http/mock-client": "^1.6",
5656
"php-http/guzzle7-adapter": "^1",
57-
"squizlabs/php_codesniffer": "^3.5"
57+
"squizlabs/php_codesniffer": "^3.8.1",
58+
"http-interop/http-factory-guzzle": "^1.1"
5859
},
5960
"extra": {
6061
"branch-alias": {
@@ -70,5 +71,10 @@
7071
"fix-style": "phpcbf -p --standard=PSR2 src/"
7172
},
7273
"minimum-stability": "dev",
73-
"prefer-stable": true
74+
"prefer-stable": true,
75+
"config": {
76+
"allow-plugins": {
77+
"php-http/discovery": true
78+
}
79+
}
7480
}

0 commit comments

Comments
 (0)
0