Skip to content

Commit 566f464

Browse files
authored
Merge pull request #42 from cybercog/feature/laravel-57-support
Add Laravel 5.7 support
2 parents dca7d1c + b5dc918 commit 566f464

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

CHANGELOG.md

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

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

5+
## [4.0.0] - 2018-09-09
6+
7+
### Added
8+
9+
- ([#42](https://github.com/cybercog/laravel-eloquent-flag/pull/42)) Laravel 5.7 support
10+
- ([#37](https://github.com/cybercog/laravel-eloquent-flag/pull/37)) Events firing
11+
512
## [3.13.0] - 2018-02-08
613

714
### Added
@@ -165,6 +172,7 @@ All notable changes to `laravel-eloquent-flag` will be documented in this file.
165172

166173
- `is_active` boolean flag added.
167174

175+
[4.0.0]: https://github.com/cybercog/laravel-eloquent-flag/compare/3.13.0...4.0.0
168176
[3.13.0]: https://github.com/cybercog/laravel-eloquent-flag/compare/3.12.0...3.13.0
169177
[3.12.0]: https://github.com/cybercog/laravel-eloquent-flag/compare/3.11.0...3.12.0
170178
[3.11.0]: https://github.com/cybercog/laravel-eloquent-flag/compare/3.10.0...3.11.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ If you discover any security related issues, please email open@cybercog.su inste
127127

128128
## Contributors
129129

130-
| <a href="https://github.com/antonkomarev">![@antonkomarev](https://avatars.githubusercontent.com/u/1849174?s=110)<br />Anton Komarev</a> | <a href="https://github.com/zagreusinoz">![@zagreusinoz](https://avatars.githubusercontent.com/u/16147285?s=110)<br />zagreusinoz</a> |
131-
| :---: | :---: |
130+
| <a href="https://github.com/antonkomarev">![@antonkomarev](https://avatars.githubusercontent.com/u/1849174?s=110)<br />Anton Komarev</a> | <a href="https://github.com/zagreusinoz">![@zagreusinoz](https://avatars.githubusercontent.com/u/16147285?s=110)<br />zagreusinoz</a> | <a href="https://github.com/jonagoldman">![@jonagoldman](https://avatars.githubusercontent.com/u/1297559?s=110)<br />Jona Goldman</a> | <a href="https://github.com/irazasyed">![@irazasyed](https://avatars.githubusercontent.com/u/1915268?s=110)<br />Irfaq Syed</a> |
131+
| :---: | :---: | :---: | :---: |
132132

133133
[Eloquent Flag contributors list](../../contributors)
134134

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,13 @@
5454
},
5555
"require": {
5656
"php": "^5.6|^7.0",
57-
"illuminate/database": "~5.2.0|~5.3.0|~5.4.0|~5.5.0|~5.6.0"
57+
"illuminate/database": "~5.2.0|~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0"
5858
},
5959
"require-dev": {
6060
"friendsofphp/php-cs-fixer": "^2.10",
61-
"orchestra/database": "~3.4.0|~3.5.0|~3.6.0",
62-
"orchestra/testbench": "~3.4.0|~3.5.0|~3.6.0",
61+
"mockery/mockery": "^1.0",
62+
"orchestra/database": "~3.4.0|~3.5.0|~3.6.0|~3.7.0",
63+
"orchestra/testbench": "~3.4.0|~3.5.0|~3.6.0|~3.7.0",
6364
"phpunit/phpunit": "^5.7|^6.2|^7.0"
6465
},
6566
"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)