Skip to content

Commit 8101edb

Browse files
Add support for Laravel 5.6
1 parent cfe7e9d commit 8101edb

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-json-api-paginate` will be documented in this file
44

5+
## 1.3.1 - 2018-02-08
6+
7+
- add support for Laravel 5.6
8+
59
## 1.3.0 - 2018-01-04
610

711
- add `default_size` config and parameter option

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You can install the package via composer:
1919
composer require spatie/laravel-json-api-paginate
2020
```
2121

22-
In Laravel 5.5 the service provider will automatically get registered. In older versions of the framework just add the service provider in `config/app.php` file:
22+
In Laravel 5.5 and above the service provider will automatically get registered. In older versions of the framework just add the service provider in `config/app.php` file:
2323

2424
```php
2525
'providers' => [

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
],
1818
"require": {
1919
"php": "^7.0",
20-
"illuminate/database": "~5.4.17|~5.5.0",
21-
"illuminate/support": "~5.4.17|~5.5.0"
20+
"illuminate/database": "~5.4.17|~5.5.0|~5.6.0",
21+
"illuminate/support": "~5.4.17|~5.5.0|~5.6.0"
2222
},
2323
"require-dev": {
24-
"orchestra/testbench": "~3.4.7|~3.5.0",
25-
"phpunit/phpunit": "^6.3"
24+
"orchestra/testbench": "~3.4.7|~3.5.0|~3.6.0",
25+
"phpunit/phpunit": "^6.3|^7.0"
2626
},
2727
"autoload": {
2828
"psr-4": {

0 commit comments

Comments
 (0)