Skip to content

Commit 14d579e

Browse files
committed
add support for Laravel 5.5
1 parent 899ff04 commit 14d579e

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ language: php
33
php:
44
- 7.0
55
- 7.1
6+
- 7.2
67

78
env:
89
matrix:

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22

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

5+
## 1.2.0 - 2017-08-21
6+
7+
- add support for Laravel 5.5
8+
59
## 1.1.0 - 2017-06-15
610

711
- make the `page[x]` parameter names configurable
812
- add support for L5.5's auto package discovery
913

10-
1114
## 1.0.0 - 2017-06-14
1215

1316
- initial release

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",
21-
"illuminate/support": "~5.4.17"
20+
"illuminate/database": "~5.4.17|~5.5.0",
21+
"illuminate/support": "~5.4.17|~5.5.0"
2222
},
2323
"require-dev": {
24-
"orchestra/testbench": "~3.4.7",
25-
"phpunit/phpunit": "^6.1"
24+
"orchestra/testbench": "~3.4.7|~3.5.0",
25+
"phpunit/phpunit": "^6.3"
2626
},
2727
"autoload": {
2828
"psr-4": {

0 commit comments

Comments
 (0)