Skip to content

Commit db3314e

Browse files
Laravel 8 compatibility (mghoneimy#36)
Require guzzle 7 as a dependency to support Laravel 8 - Add dependency on guzzle 7.0.1 alongside guzzle 6 - Add PHP7.4 to travis config
1 parent 8e8998f commit db3314e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ php:
33
- '7.1'
44
- '7.2'
55
- '7.3'
6+
- '7.4'
67

78
before_script:
89
- composer install
@@ -12,4 +13,4 @@ script: vendor/phpunit/phpunit/phpunit tests/ --whitelist src/ --coverage-clover
1213
after_script:
1314
- php vendor/bin/codacycoverage clover build/coverage/xml
1415

15-
os: linux
16+
os: linux

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"ext-json": "*",
3434
"psr/http-message": "^1.0",
3535
"psr/http-client": "^1.0",
36-
"guzzlehttp/guzzle": "^6.3"
36+
"guzzlehttp/guzzle": "^6.3|^7.0.1"
3737
},
3838
"require-dev": {
3939
"phpunit/phpunit": "^7.5|^8.0",

0 commit comments

Comments
 (0)