Skip to content

Commit c5c7180

Browse files
author
Anton Komarev
authored
Add Laravel 5.6 support (#18)
* Add Laravel 5.6 support
1 parent 9b23801 commit c5c7180

File tree

4 files changed

+19
-12
lines changed

4 files changed

+19
-12
lines changed

CHANGELOG.md

Lines changed: 9 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.1.0] - 2018-02-08
6+
7+
### Added
8+
9+
- Laravel 5.6 support
10+
511
## [5.0.0] - 2017-09-13
612

713
### Changed
@@ -75,6 +81,9 @@ All notable changes to `laravel-ownership` will be documented in this file.
7581

7682
- Initial release
7783

84+
[5.1.0]: https://github.com/cybercog/laravel-ownership/compare/5.0.0...5.1.0
85+
[5.0.0]: https://github.com/cybercog/laravel-ownership/compare/4.0.0...5.0.0
86+
[4.0.0]: https://github.com/cybercog/laravel-ownership/compare/3.1.0...4.0.0
7887
[3.1.0]: https://github.com/cybercog/laravel-ownership/compare/3.0.0...3.1.0
7988
[3.0.0]: https://github.com/cybercog/laravel-ownership/compare/2.2.0...3.0.0
8089
[2.2.0]: https://github.com/cybercog/laravel-ownership/compare/2.1.0...2.2.0

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017, Anton Komarev <[email protected]>
3+
Copyright (c) 2018, Anton Komarev <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ class Article extends Model implements OwnableContract
300300
}
301301
```
302302

303-
## Change log
303+
## Changelog
304304

305305
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
306306

@@ -326,9 +326,8 @@ If you discover any security related issues, please email [email protected] inste
326326

327327
## Credits
328328

329-
| | @mention |
330-
|---|---|
331-
| ![@a-komarev](https://avatars2.githubusercontent.com/u/1849174?s=64) | [@a-komarev](https://github.com/a-komarev) |
329+
| <a href="https://github.com/a-komarev">![@a-komarev](https://avatars.githubusercontent.com/u/1849174?s=110)<br />Anton Komarev</a> |
330+
| :---: |
332331

333332
[Laravel Ownership contributors list](../../contributors)
334333

composer.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,14 @@
4141
},
4242
"require": {
4343
"php": "^5.6|^7.0",
44-
"illuminate/database": "~5.2|~5.3|~5.4|~5.5",
45-
"illuminate/support": "~5.2|~5.3|~5.4|~5.5"
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"
4646
},
4747
"require-dev": {
48-
"friendsofphp/php-cs-fixer": "^1.11",
49-
"mockery/mockery": "^0.9.8",
50-
"orchestra/database": "~3.5.0",
51-
"orchestra/testbench": "~3.5.0",
52-
"phpunit/phpunit": "^6.0"
48+
"friendsofphp/php-cs-fixer": "^2.10",
49+
"orchestra/database": "~3.5.0|~3.6.0",
50+
"orchestra/testbench": "~3.5.0|~3.6.0",
51+
"phpunit/phpunit": "^6.0|^7.0"
5352
},
5453
"autoload": {
5554
"psr-4": {

0 commit comments

Comments
 (0)