Skip to content

Commit

Permalink
Merge pull request #37 from olssonm/laravel-6
Browse files Browse the repository at this point in the history
Laravel 6
  • Loading branch information
olssonm authored Sep 5, 2019
2 parents b38c92a + 33fd2ac commit 3a23285
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 28 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
composer.lock
src/config.php
.DS_Store
.phpunit.result.cache
28 changes: 8 additions & 20 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,19 @@ script:

matrix:
include:
- php: 7.0
env:
- ILLUMINATE_VERSION=5.4.*
- PHPUNIT_VERSION=~5.7
- php: 7.1
env:
- ILLUMINATE_VERSION=5.5.*
- PHPUNIT_VERSION=~6.0
- php: 7.1
env:
- ILLUMINATE_VERSION=5.6.*
- PHPUNIT_VERSION=7.1
- php: 7.2
env:
- ILLUMINATE_VERSION=5.6.*
- PHPUNIT_VERSION=7.1
- ILLUMINATE_VERSION=5.8.*
- PHPUNIT_VERSION=7.5
- php: 7.2
env:
- ILLUMINATE_VERSION=5.7.*
- PHPUNIT_VERSION=7.1
- ILLUMINATE_VERSION=5.8.*
- PHPUNIT_VERSION=7.5
- php: 7.2
env:
- ILLUMINATE_VERSION=5.8.*
- PHPUNIT_VERSION=~7.5
- ILLUMINATE_VERSION=^6.0
- PHPUNIT_VERSION=^8.0
- php: 7.3
env:
- ILLUMINATE_VERSION=5.8.*
- PHPUNIT_VERSION=~7.5
- ILLUMINATE_VERSION=^6.0
- PHPUNIT_VERSION=^8.0
3 changes: 1 addition & 2 deletions README.jp.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ Basic認証は望まないユーザーからのアクセスを排除すること

Laravel | l5-very-basic-auth
:--------------------------------------|:----------
`5.1.*/5.2.*` | `1.*`
`5.3.*` | `2.*`
`^5.4` | `5.*`
`^6` | `6.*`

#### Laravel4.xを使っている場合

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ While HTTP Basic Auth does give you a protection layer against unwanted visitors

Laravel | l5-very-basic-auth
:--------------------------------------|:----------
`5.1.*/5.2.*` | `1.*`
`5.3.*` | `2.*`
`^5.4` | `5.*`
`^6` | `6.*`

*The odd versioning is due to breaking changes in the testing framework and PHP versions. Else, `3.x` is usable for Laravel 5.4 (PHP 5.6 and up) and `4.x` for Laravel 5.5.*

Expand Down
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
}
],
"require": {
"illuminate/support": ">=5.4",
"php" : "^7.0"
"illuminate/support": ">=5.8 || ^6.0",
"php" : "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^6.5 || ^7.5",
"orchestra/testbench": ">=3.4.0"
"phpunit/phpunit": "^7.5 || ^8.0",
"orchestra/testbench": ">=3.4.0",
"laravel/helpers": "^1.1"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 3a23285

Please sign in to comment.