Skip to content

Commit

Permalink
Add support for PHP 7.4, drop support for 7.1 (#61)
Browse files Browse the repository at this point in the history
* Update composer.json for PHP 7.4

* Drop support for PHP 7.1, add support for 7.3 and 7.4

Co-authored-by: Nicholas Law <nick@nicholaslaw.com.au>
  • Loading branch information
echosa and nicklaw5 committed Jun 12, 2020
1 parent c197511 commit 6edc470
Show file tree
Hide file tree
Showing 5 changed files with 1,352 additions and 559 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -5,3 +5,4 @@ vendor/
.idea
.DS_STORE
.php_cs.cache
.phpunit.result.cache
3 changes: 2 additions & 1 deletion .travis.yml
@@ -1,7 +1,8 @@
language: php
php:
- '7.1'
- '7.2'
- '7.3'
- '7.4'

before_script:
- composer self-update
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Expand Up @@ -16,14 +16,14 @@
}
],
"require": {
"php": ">=7.1.0",
"php": ">=7.2.0",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"phpspec/phpspec": "^5.1",
"phpunit/phpunit": "^5.7"
"phpspec/phpspec": "^6.1",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 6edc470

Please sign in to comment.