Skip to content

Commit 7805cc7

Browse files
committed
Allow any psr/http implementation.
1 parent 2dc8a25 commit 7805cc7

File tree

3 files changed

+12
-19
lines changed

3 files changed

+12
-19
lines changed

.github/workflows/build.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,14 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
php: [7.1, 7.2, 7.3, 7.4]
23-
symfony: [^3.4, ^4.4, ^5.2]
22+
php: [7.1, 7.2, 7.3, 7.4, 8.0]
23+
symfony: [^3.4, ^4.4, ^5.2, ^6.0]
2424
exclude:
25-
- php: 7.1
26-
symfony: ^5.2
25+
- { php: 7.1, symfony: ^5.2 }
26+
- { php: 7.1, symfony: ^6.0 }
27+
- { php: 7.2, symfony: ^6.0 }
28+
- { php: 7.3, symfony: ^6.0 }
29+
- { php: 7.4, symfony: ^6.0 }
2730

2831
env:
2932
APP_ENV: test

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
"MIT"
2121
],
2222
"require": {
23-
"php": "^7.1",
23+
"php": "^7.1|^8.0",
2424
"payum/core": "^1.5",
25-
"php-http/guzzle6-adapter": "^1.1|^2.0",
26-
"symfony/options-resolver": "^3.0|^4.0|^5.0",
27-
"symfony/process": "^3.0|^4.0|^5.0",
25+
"symfony/options-resolver": ">3.4,<7.0",
26+
"symfony/process": ">3.4,<7.0",
2827
"psr/log": "^1.0"
2928
},
3029
"require-dev": {
31-
"phpunit/phpunit": "^7.0|^8.0"
30+
"phpunit/phpunit": "^7.0|^8.0",
31+
"php-http/guzzle6-adapter": "^2.0"
3232
},
3333
"autoload": {
3434
"psr-4": {

tests/Action/AbstractActionTest.php

-10
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,6 @@
1616
*/
1717
abstract class AbstractActionTest extends GenericActionTest
1818
{
19-
/**
20-
* @test
21-
*/
22-
public function couldBeConstructedWithoutAnyArguments()
23-
{
24-
parent::couldBeConstructedWithoutAnyArguments();
25-
26-
$this->assertTrue(true);
27-
}
28-
2919
/**
3020
* @return MockObject|GatewayInterface
3121
*/

0 commit comments

Comments
 (0)