Skip to content
This repository was archived by the owner on Aug 27, 2024. It is now read-only.

Commit 226bf52

Browse files
committed
Declare compatibility with Laravel 6
1 parent 7cac8e0 commit 226bf52

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ cache:
77
php:
88
- 7.1
99
- 7.2
10+
- 7.3
11+
- 7.4
1012

1113
install:
1214
- composer install --no-interaction --prefer-dist

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes History
22

3+
1.4.0
4+
-----
5+
- Declare compatibility with Laravel 6
6+
37
1.3.0
48
-----
59
- Remove direct dependency from dingo/api

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
## Library for fast build laravel based application with simple CRUD operations.
99
As Repositories layer uses [laravel-repositories](https://github.com/Saritasa/php-laravel-repositories) library.
1010

11-
## Laravel 5.5
11+
## Laravel 5.5/6.0
1212
Install the ```saritasa/laravel-entity-services``` package:
1313

1414
```

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
],
1313
"require": {
1414
"php": ">=7.1",
15-
"illuminate/support": "5.*",
15+
"illuminate/support": "5.*|6.0",
1616
"saritasa/laravel-repositories": "^3.3"
1717
},
1818
"require-dev": {
1919
"mockery/mockery": "^1.1",
2020
"phpunit/phpunit": "^7.5",
21-
"squizlabs/php_codesniffer": "^3.0"
21+
"squizlabs/php_codesniffer": "^3.5"
2222
},
2323
"autoload": {
2424
"psr-4" : {

0 commit comments

Comments
 (0)