Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit 56334fe

Browse files
umulmrumStefan Kruppa
authored andcommitted
Test against PHP 7.4
1 parent 2f35368 commit 56334fe

File tree

2 files changed

+42
-29
lines changed

2 files changed

+42
-29
lines changed

.travis.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sudo: required
2-
dist: precise
2+
dist: trusty
33
language: php
44
php:
55
- 5.3
@@ -10,11 +10,24 @@ php:
1010
- 7.1
1111
- 7.2
1212
- 7.3
13+
- 7.4
1314
- hhvm
1415
matrix:
1516
allow_failures:
1617
- php: hhvm
1718
fast_finish: true
19+
include:
20+
- php: 5.3
21+
dist: precise
22+
- php: 5.4
23+
- php: 5.5
24+
- php: 5.6
25+
- php: 7.0
26+
- php: 7.1
27+
- php: 7.2
28+
- php: 7.3
29+
- php: 7.4
30+
- php: hhvm
1831
before_script:
1932
- composer self-update
2033
- composer install --dev

composer.json

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
{
2-
"name": "paypal/rest-api-sdk-php",
3-
"description": "PayPal's PHP SDK for REST APIs",
4-
"keywords": ["paypal", "payments", "rest", "sdk"],
5-
"type": "library",
6-
"license": "Apache-2.0",
7-
"homepage": "http://paypal.github.io/PayPal-PHP-SDK/",
8-
"authors": [
9-
{
10-
"name": "PayPal",
11-
"homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
12-
}
13-
],
14-
"require": {
15-
"php": ">=5.3.0",
16-
"ext-curl": "*",
17-
"ext-json": "*",
18-
"psr/log": "^1.0.0"
19-
},
20-
"require-dev": {
21-
"phpunit/phpunit": "^4.8.35"
22-
},
23-
"autoload": {
24-
"psr-0": {
25-
"PayPal": "lib/"
26-
}
27-
}
28-
}
1+
{
2+
"name": "paypal/rest-api-sdk-php",
3+
"description": "PayPal's PHP SDK for REST APIs",
4+
"keywords": ["paypal", "payments", "rest", "sdk"],
5+
"type": "library",
6+
"license": "Apache-2.0",
7+
"homepage": "http://paypal.github.io/PayPal-PHP-SDK/",
8+
"authors": [
9+
{
10+
"name": "PayPal",
11+
"homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
12+
}
13+
],
14+
"require": {
15+
"php": ">=5.3.0",
16+
"ext-curl": "*",
17+
"ext-json": "*",
18+
"psr/log": "^1.0.0"
19+
},
20+
"require-dev": {
21+
"phpunit/phpunit": "^4.8.35|^6.3"
22+
},
23+
"autoload": {
24+
"psr-0": {
25+
"PayPal": "lib/"
26+
}
27+
}
28+
}

0 commit comments

Comments
 (0)