Skip to content

Commit

Permalink
Laravel 5.8.* support
Browse files Browse the repository at this point in the history
  • Loading branch information
korridor committed Feb 14, 2021
1 parent 9cf9f47 commit 41ae6f6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ language: php

matrix:
include:
# Laravel 5.8.*
- php: 7.1
env: LARAVEL='5.8.*' COMPOSER_FLAGS='--prefer-stable'
- php: 7.2
env: LARAVEL='5.8.*' COMPOSER_FLAGS='--prefer-stable'
# Laravel 6.*
- php: 7.2
env: LARAVEL='6.*' COMPOSER_FLAGS='--prefer-stable'
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ This package is tested for the following Laravel versions:
- 8.* (PHP 7.3, 7.4, 8.0)
- 7.* (PHP 7.2, 7.3, 7.4)
- 6.* (PHP 7.2, 7.3)
- 5.8.* (PHP 7.1, 7.2)

## Usage

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
],
"require": {
"php": "^7.1|^8",
"illuminate/database": "6.*|7.*|8.*",
"illuminate/support": "6.*|7.*|8.*"
"illuminate/database": "^5.8|6.*|7.*|8.*",
"illuminate/support": "^5.8|6.*|7.*|8.*"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0|^6.0",
"orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"friendsofphp/php-cs-fixer": "^2.16",
"squizlabs/php_codesniffer": "^3.5"
Expand Down

0 comments on commit 41ae6f6

Please sign in to comment.