Skip to content

Commit

Permalink
Add Laravel 5.6 support (#18)
Browse files Browse the repository at this point in the history
* Add Laravel 5.6 support
  • Loading branch information
Anton Komarev authored Feb 8, 2018
1 parent 9b23801 commit c5c7180
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 12 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## [5.1.0] - 2018-02-08

### Added

- Laravel 5.6 support

## [5.0.0] - 2017-09-13

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

- Initial release

[5.1.0]: https://github.com/cybercog/laravel-ownership/compare/5.0.0...5.1.0
[5.0.0]: https://github.com/cybercog/laravel-ownership/compare/4.0.0...5.0.0
[4.0.0]: https://github.com/cybercog/laravel-ownership/compare/3.1.0...4.0.0
[3.1.0]: https://github.com/cybercog/laravel-ownership/compare/3.0.0...3.1.0
[3.0.0]: https://github.com/cybercog/laravel-ownership/compare/2.2.0...3.0.0
[2.2.0]: https://github.com/cybercog/laravel-ownership/compare/2.1.0...2.2.0
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017, Anton Komarev <[email protected]>
Copyright (c) 2018, Anton Komarev <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ class Article extends Model implements OwnableContract
}
```

## Change log
## Changelog

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

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

## Credits

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

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

Expand Down
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,14 @@
},
"require": {
"php": "^5.6|^7.0",
"illuminate/database": "~5.2|~5.3|~5.4|~5.5",
"illuminate/support": "~5.2|~5.3|~5.4|~5.5"
"illuminate/database": "~5.2|~5.3|~5.4|~5.5|~5.6",
"illuminate/support": "~5.2|~5.3|~5.4|~5.5|~5.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.11",
"mockery/mockery": "^0.9.8",
"orchestra/database": "~3.5.0",
"orchestra/testbench": "~3.5.0",
"phpunit/phpunit": "^6.0"
"friendsofphp/php-cs-fixer": "^2.10",
"orchestra/database": "~3.5.0|~3.6.0",
"orchestra/testbench": "~3.5.0|~3.6.0",
"phpunit/phpunit": "^6.0|^7.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit c5c7180

Please sign in to comment.