File tree 3 files changed +26
-12
lines changed
3 files changed +26
-12
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
3
php :
4
+ - 5.6
5
+ - 7.0
4
6
- 7.1
5
7
- 7.2
6
8
9
+ # This triggers builds to run on the new TravisCI infrastructure.
10
+ # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
11
+ sudo : false
12
+
13
+ # # Cache composer
14
+ cache :
15
+ directories :
16
+ - $HOME/.composer/cache
17
+
7
18
env :
8
- - SYMFONY_VERSION="2.1"
9
- - SYMFONY_VERSION="2.*"
10
- - SYMFONY_VERSION="3.0"
11
- - SYMFONY_VERSION="3.*"
12
- - SYMFONY_VERSION="4.0"
13
- - SYMFONY_VERSION="4.*"
19
+ global :
20
+ - symfony="*"
21
+
22
+ matrix :
23
+ include :
24
+ - php : 5.6
25
+ env : symfony="^2.1"
26
+ - php : 5.6
27
+ env : symfony="^3"
28
+ - php : 7.1
29
+ env : symfony="^4"
14
30
15
- before_script :
16
- - composer self-update
17
- - composer --version
18
- - composer require symfony/http-foundation:${SYMFONY_VERSION} --no-update
31
+ install :
32
+ - if [[ $symfony != '*' ]]; then travis_retry composer require symfony/http-foundation:${symfony} --no-update --no-interaction; fi
19
33
20
34
script : composer install --prefer-dist --no-interaction
Original file line number Diff line number Diff line change 6
6
[ ![ Latest Stable Version] ( https://poser.pugx.org/omnipay/omnipay/version )] ( https://packagist.org/packages/omnipay/omnipay )
7
7
[ ![ Total Downloads] ( https://poser.pugx.org/omnipay/omnipay/d/total )] ( https://packagist.org/packages/omnipay/omnipay )
8
8
9
- Omnipay is a payment processing library for PHP 7.1+ . It has been designed based on
9
+ Omnipay is a payment processing library for PHP. It has been designed based on
10
10
ideas from [ Active Merchant] ( http://activemerchant.org/ ) , plus experience implementing
11
11
dozens of gateways for [ CI Merchant] . It has a clear and consistent API,
12
12
is fully unit tested, and even comes with an example application to get you started.
Original file line number Diff line number Diff line change 64
64
}
65
65
],
66
66
"require" : {
67
- "php" : " ^7.1 " ,
67
+ "php" : " ^5.6|^7 " ,
68
68
"omnipay/common" : " ^3" ,
69
69
"php-http/guzzle6-adapter" : " ^1.1"
70
70
},
You can’t perform that action at this time.
0 commit comments