Skip to content

Commit

Permalink
Support Laravel 6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyslik committed Oct 6, 2019
1 parent 7211a9a commit 07dcd7f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ git:
env:
- version=L5-8
- version=L6-0
- version=L6-1

sudo: false

Expand All @@ -24,6 +25,7 @@ install:
- travis_retry composer install --no-interaction --prefer-dist --no-suggest;
- if [[ $version = 'L5-8' ]]; then travis_retry composer require --dev --update-with-dependencies --no-suggest --no-interaction orchestra/testbench:"3.8.*" phpunit/phpunit:"^7.0"; fi
- if [[ $version = 'L6-0' ]]; then travis_retry composer require --dev --update-with-dependencies --no-suggest --no-interaction orchestra/testbench:"4.0.*" phpunit/phpunit:"^8.0"; fi
- if [[ $version = 'L6-1' ]]; then travis_retry composer require --dev --update-with-dependencies --no-suggest --no-interaction orchestra/testbench:"4.1.*" phpunit/phpunit:"^8.0"; fi

script: vendor/bin/phpunit

Expand All @@ -32,4 +34,5 @@ branches:
- master
- L5.8
- L6.0
- L6.1

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Pull this package in through Composer (development/latest version `dev-master`)
```json
{
"require": {
"kyslik/column-sortable": "6.0.*"
"kyslik/column-sortable": "6.1.*"
}
}
```
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kyslik/column-sortable",
"description": "Package for handling column sorting in Laravel 5.x",
"description": "Package for handling column sorting in Laravel 6.x",
"keywords": [
"sortable",
"sorting",
Expand All @@ -19,12 +19,12 @@
],
"require": {
"php": ">=7.2",
"illuminate/support": "5.8.*|6.0.*",
"illuminate/database": "5.8.*|6.0.*"
"illuminate/support": "5.8.*|6.0.*|6.1.*",
"illuminate/database": "5.8.*|6.0.*|6.1.*"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0",
"orchestra/testbench": "3.8.*|4.0.*"
"orchestra/testbench": "3.8.*|4.*"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 07dcd7f

Please sign in to comment.