File tree 6 files changed +69
-6
lines changed
6 files changed +69
-6
lines changed Original file line number Diff line number Diff line change 1
- * .log
2
- .DS_Store
3
- /.idea /
4
1
/vendor
5
2
composer.lock
6
3
composer.phar
Original file line number Diff line number Diff line change
1
+ language : php
2
+
3
+ php :
4
+ - 5.3
5
+ - 5.4
6
+ - 5.5
7
+
8
+ env :
9
+ - SYMFONY_VERSION="2.1" GUZZLE_VERSION="3.1"
10
+ - SYMFONY_VERSION="2.*" GUZZLE_VERSION="3.1"
11
+ - SYMFONY_VERSION="2.1" GUZZLE_VERSION="3.*"
12
+ - SYMFONY_VERSION="2.*" GUZZLE_VERSION="3.*"
13
+
14
+ before_script :
15
+ - composer self-update
16
+ - composer --version
17
+ - composer require symfony/http-foundation:${SYMFONY_VERSION} --no-update
18
+ - composer require guzzle/http:${GUZZLE_VERSION} --no-update
19
+ - composer install -n --dev --prefer-source
20
+
21
+ script : vendor/bin/phpcs --standard=PSR2 src && vendor/bin/phpunit --coverage-text
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " omnipay/buckaroo" ,
3
+ "type" : " library" ,
4
+ "description" : " Buckaroo driver for the Omnipay payment processing library" ,
5
+ "keywords" : [
6
+ " buckaroo" ,
7
+ " gateway" ,
8
+ " merchant" ,
9
+ " omnipay" ,
10
+ " pay" ,
11
+ " payment"
12
+ ],
13
+ "homepage" : " https://github.com/omnipay/buckaroo" ,
14
+ "license" : " MIT" ,
15
+ "authors" : [
16
+ {
17
+ "name" : " Adrian Macneil" ,
18
+
19
+ },
20
+ {
21
+ "name" : " Omnipay Contributors" ,
22
+ "homepage" : " https://github.com/omnipay/buckaroo/contributors"
23
+ }
24
+ ],
25
+ "autoload" : {
26
+ "psr-0" : { "Omnipay\\ Buckaroo\\ " : " src/" }
27
+ },
28
+ "require" : {
29
+ "omnipay/common" : " 2.*"
30
+ },
31
+ "require-dev" : {
32
+ "guzzle/plugin-mock" : " ~3.1" ,
33
+ "mockery/mockery" : " ~0.8" ,
34
+ "omnipay/tests" : " 2.*" ,
35
+ "phpunit/phpunit" : " ~3.7.16" ,
36
+ "squizlabs/php_codesniffer" : " ~1.4.4"
37
+ },
38
+ "extra" : {
39
+ "branch-alias" : {
40
+ "dev-master" : " 2.0.x-dev"
41
+ }
42
+ },
43
+ "minimum-stability" : " dev" ,
44
+ "prefer-stable" : true
45
+ }
Original file line number Diff line number Diff line change 2
2
3
3
namespace Omnipay \Buckaroo ;
4
4
5
- use Omnipay \GatewayTestCase ;
5
+ use Omnipay \Tests \ GatewayTestCase ;
6
6
7
7
class GatewayTest extends GatewayTestCase
8
8
{
Original file line number Diff line number Diff line change 2
2
3
3
namespace Omnipay \Buckaroo \Message ;
4
4
5
- use Omnipay \TestCase ;
5
+ use Omnipay \Tests \ TestCase ;
6
6
7
7
class CompletePurchaseRequestTest extends TestCase
8
8
{
Original file line number Diff line number Diff line change 2
2
3
3
namespace Omnipay \Buckaroo \Message ;
4
4
5
- use Omnipay \TestCase ;
5
+ use Omnipay \Tests \ TestCase ;
6
6
7
7
class PurchaseRequestTest extends TestCase
8
8
{
You can’t perform that action at this time.
0 commit comments