Skip to content

Commit

Permalink
Add Laravel 8 support (#176)
Browse files Browse the repository at this point in the history
Add Laravel 8 support
  • Loading branch information
antonkomarev authored Sep 8, 2020
1 parent 5225460 commit 256ac43
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
1 change: 0 additions & 1 deletion .styleci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ disabled:
- concat_without_spaces
- phpdoc_no_package
- logical_not_operators_with_successor_space
- simplified_null_return
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ before_script:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
- if [ $(phpenv version-name) = '7.3' ]; then composer require laravel/legacy-factories --dev; fi
- if [ $(phpenv version-name) = '7.4' ]; then composer require laravel/legacy-factories --dev; fi

script:
- ./vendor/bin/phpstan analyse -c .phpstan.neon
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to `laravel-love` will be documented in this file.

## [Unreleased]

## [8.5.0]

### Added

- ([#176]) Added Laravel 8 support

## [8.4.0]

### Added
Expand Down Expand Up @@ -438,7 +444,8 @@ Follow [upgrade instructions](UPGRADING.md#from-v5-to-v6) to migrate database to

- Initial release

[Unreleased]: https://github.com/cybercog/laravel-love/compare/8.4.0...master
[Unreleased]: https://github.com/cybercog/laravel-love/compare/8.5.0...master
[8.5.0]: https://github.com/cybercog/laravel-love/compare/8.4.0...8.5.0
[8.4.0]: https://github.com/cybercog/laravel-love/compare/8.3.1...8.4.0
[8.3.1]: https://github.com/cybercog/laravel-love/compare/8.3.0...8.3.1
[8.3.0]: https://github.com/cybercog/laravel-love/compare/8.2.0...8.3.0
Expand Down Expand Up @@ -479,6 +486,7 @@ Follow [upgrade instructions](UPGRADING.md#from-v5-to-v6) to migrate database to
[1.1.1]: https://github.com/cybercog/laravel-love/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/cybercog/laravel-love/compare/1.0.0...1.1.0

[#176]: https://github.com/cybercog/laravel-love/pull/176
[#165]: https://github.com/cybercog/laravel-love/pull/165
[#161]: https://github.com/cybercog/laravel-love/pull/161
[#158]: https://github.com/cybercog/laravel-love/pull/158
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@
},
"require": {
"php": "^7.1.3",
"illuminate/database": "5.7.*|5.8.*|^6.0|^7.0",
"illuminate/support": "5.7.*|5.8.*|^6.0|^7.0"
"illuminate/database": "5.7.*|5.8.*|^6.0|^7.0|^8.0",
"illuminate/support": "5.7.*|5.8.*|^6.0|^7.0|^8.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/database": "~3.7.0|~3.8.0|^4.0|^5.0",
"orchestra/testbench": "~3.7.0|~3.8.0|^4.0|^5.0",
"orchestra/database": "~3.7.0|~3.8.0|^4.0|^5.0|^6.0",
"orchestra/testbench": "~3.7.0|~3.8.0|^4.0|^5.0|^6.0",
"phpstan/phpstan": "^0.12.29",
"phpunit/phpunit": "^7.5|^8.0|^9.0"
},
Expand Down

0 comments on commit 256ac43

Please sign in to comment.