Skip to content

Commit

Permalink
Merge pull request #9 from markheramis/master
Browse files Browse the repository at this point in the history
update for laravel 8 and php8.* compatibility
  • Loading branch information
RyanDaDeng authored Mar 12, 2021
2 parents 0e0206f + a556044 commit e4a8b2a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
dist: trusty
dist: bionic

language: php

php:
- 7.1
- 7.3
- 7.4
- 8.0

matrix:
fast_finish: true
Expand Down
8 changes: 6 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@ All notable changes to `LaravelGoogleReCaptchaV2` will be documented in this fil

## Version 1.0

### Added
- Everything
### Updated
- update PHP version to ^7.2.5 || ^8.0.
- update guzzlehttp/guzzle dependency to version 7.0 or higher.
- update phpunit/phpunit dependency to version 9.0 or higher.
- update orchestra/testbench dependency to version 6.0 or higher.
- update "php-coveralls/php-coveralls" dependency to version 2.4 or higher.
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
"laravel"
],
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "^6.2"
"php": "^7.2.5 || ^8.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"orchestra/testbench": "~3.0",
"php-coveralls/php-coveralls": "^2.1"
"phpunit/phpunit": "~9.0",
"orchestra/testbench": "^6.0",
"php-coveralls/php-coveralls": "^2.4"
},
"autoload": {
"psr-4": {
Expand All @@ -52,4 +52,4 @@
}
}
}
}
}

0 comments on commit e4a8b2a

Please sign in to comment.