File tree Expand file tree Collapse file tree 4 files changed +20
-2
lines changed
Expand file tree Collapse file tree 4 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 22composer.lock
33composer.phar
44phpunit.xml
5+ /.phpunit.result.cache
Original file line number Diff line number Diff line change 3535 },
3636 "require" : {
3737 "php" : " ^7.3|^8" ,
38- "omnipay/common" : " ~3.0"
38+ "omnipay/common" : " ~3.0" ,
39+ "symfony/http-client" : " ^6.0"
3940 },
4041 "require-dev" : {
4142 "omnipay/tests" : " ^4.1" ,
4243 "squizlabs/php_codesniffer" : " ^3" ,
43- "phpspec/prophecy-phpunit" : " ^2.0"
44+ "phpspec/prophecy-phpunit" : " ^2.0" ,
45+ "http-interop/http-factory-guzzle" : " ^1.2"
4446 },
4547 "extra" : {
4648 "branch-alias" : {
5153 "test" : " phpunit" ,
5254 "check-style" : " phpcs -p --standard=PSR2 src/" ,
5355 "fix-style" : " phpcbf -p --standard=PSR2 src/"
56+ },
57+ "config" : {
58+ "allow-plugins" : {
59+ "php-http/discovery" : true
60+ }
5461 }
5562}
Original file line number Diff line number Diff line change 1111
1212class ServerNotifyRequestTest extends TestCase
1313{
14+ protected $ request ;
15+
1416 public function testServerNotifyResponseSuccess ()
1517 {
1618 parent ::setUp ();
Original file line number Diff line number Diff line change @@ -8,6 +8,14 @@ class ServerGatewayTest extends GatewayTestCase
88{
99 protected $ error_3082_text = '3082 : The Description value is too long. ' ;
1010
11+ protected $ purchaseOptions ;
12+ protected $ captureOptions ;
13+ protected $ completePurchaseOptions ;
14+ protected $ voidOptions ;
15+ protected $ abortOptions ;
16+ protected $ refundOptions ;
17+ protected $ repeatOptions ;
18+
1119 public function setUp (): void
1220 {
1321 parent ::setUp ();
You can’t perform that action at this time.
0 commit comments