Skip to content

Commit

Permalink
Add PHP 8.x support (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev authored Dec 6, 2020
1 parent 0475398 commit 0a8820e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ php:
- 7.2
- 7.3
- 7.4
- 8.0

env:
global:
Expand All @@ -17,6 +18,7 @@ before_script:
- 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
- if [ $(phpenv version-name) = '8.0' ]; 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.7.0] - 2020-12-06

### Added

- ([#185]) Added PHP 8.x support

## [8.6.1] - 2020-10-04

### Changed
Expand Down Expand Up @@ -456,7 +462,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.6.1...master
[Unreleased]: https://github.com/cybercog/laravel-love/compare/8.7.0...master
[8.7.0]: https://github.com/cybercog/laravel-love/compare/8.6.1...8.7.0
[8.6.1]: https://github.com/cybercog/laravel-love/compare/8.6.0...8.6.1
[8.6.0]: https://github.com/cybercog/laravel-love/compare/8.5.0...8.6.0
[8.5.0]: https://github.com/cybercog/laravel-love/compare/8.4.0...8.5.0
Expand Down Expand Up @@ -500,6 +507,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

[#185]: https://github.com/cybercog/laravel-love/pull/185
[#178]: https://github.com/cybercog/laravel-love/pull/178
[#177]: https://github.com/cybercog/laravel-love/pull/177
[#176]: https://github.com/cybercog/laravel-love/pull/176
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"docs": "https://laravel-love.readme.io"
},
"require": {
"php": "^7.1.3",
"php": "^7.1.3|^8.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"
},
Expand Down

0 comments on commit 0a8820e

Please sign in to comment.