Skip to content

Commit c7c9f3f

Browse files
authored
Add Laravel 5.7 support (#19)
Add Laravel 5.7 support
1 parent 4ed0514 commit c7c9f3f

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

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

33
All notable changes to `laravel-ownership` will be documented in this file.
44

5+
## [5.2.0] - 2018-09-09
6+
7+
### Added
8+
9+
- ([#19](https://github.com/cybercog/laravel-ownership/pull/19)) Laravel 5.7 support
10+
511
## [5.1.0] - 2018-02-08
612

713
### Added
@@ -81,6 +87,7 @@ All notable changes to `laravel-ownership` will be documented in this file.
8187

8288
- Initial release
8389

90+
[5.2.0]: https://github.com/cybercog/laravel-ownership/compare/5.1.0...5.2.0
8491
[5.1.0]: https://github.com/cybercog/laravel-ownership/compare/5.0.0...5.1.0
8592
[5.0.0]: https://github.com/cybercog/laravel-ownership/compare/4.0.0...5.0.0
8693
[4.0.0]: https://github.com/cybercog/laravel-ownership/compare/3.1.0...4.0.0

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,14 @@
4141
},
4242
"require": {
4343
"php": "^5.6|^7.0",
44-
"illuminate/database": "~5.2|~5.3|~5.4|~5.5|~5.6",
45-
"illuminate/support": "~5.2|~5.3|~5.4|~5.5|~5.6"
44+
"illuminate/database": "~5.2|~5.3|~5.4|~5.5|~5.6|~5.7",
45+
"illuminate/support": "~5.2|~5.3|~5.4|~5.5|~5.6|~5.7"
4646
},
4747
"require-dev": {
4848
"friendsofphp/php-cs-fixer": "^2.10",
49-
"orchestra/database": "~3.5.0|~3.6.0",
50-
"orchestra/testbench": "~3.5.0|~3.6.0",
49+
"mockery/mockery": "^1.0",
50+
"orchestra/database": "~3.5.0|~3.6.0|~3.7.0",
51+
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0",
5152
"phpunit/phpunit": "^6.0|^7.0"
5253
},
5354
"autoload": {

phpunit.xml.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
convertWarningsToExceptions="true"
99
processIsolation="false"
1010
stopOnFailure="false"
11-
syntaxCheck="false"
1211
verbose="true"
1312
>
1413
<testsuites>

0 commit comments

Comments
 (0)