Skip to content

Commit

Permalink
Merge pull request #115 from marcelogarbin/support-laravel6
Browse files Browse the repository at this point in the history
add support laravel v6
  • Loading branch information
albertcht authored Sep 5, 2019
2 parents 7aae21d + fbb6963 commit 0e03f61
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/vendor
composer.lock
.DS_Store
.idea
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
language: php

php:
- '7.0'
- '7.1'
- '7.2'
- '7.3'

Expand All @@ -14,4 +12,4 @@ before_script:
- travis_retry composer install --prefer-source --no-interaction --dev

script:
- vendor/bin/phpunit
- vendor/bin/phpunit
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
],
"require": {
"php": "^5.6.4 || ^7.0",
"illuminate/support": "^5.0",
"illuminate/support": "^5.0|^6.0",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^6.1|^7.0",
"illuminate/view": "^5.0"
"phpunit/phpunit": "^8.0",
"illuminate/view": "^5.0|^6.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/CaptchaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class CaptchaTest extends TestCase

protected $captcha;

protected function setUp()
protected function setUp(): void
{
$this->captcha = new InvisibleReCaptcha(
static::SITE_KEY,
Expand Down

0 comments on commit 0e03f61

Please sign in to comment.