Skip to content

Commit 0a8820e

Browse files
authored
Add PHP 8.x support (#185)
1 parent 0475398 commit 0a8820e

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ php:
55
- 7.2
66
- 7.3
77
- 7.4
8+
- 8.0
89

910
env:
1011
global:
@@ -17,6 +18,7 @@ before_script:
1718
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
1819
- if [ $(phpenv version-name) = '7.3' ]; then composer require laravel/legacy-factories --dev; fi
1920
- if [ $(phpenv version-name) = '7.4' ]; then composer require laravel/legacy-factories --dev; fi
21+
- if [ $(phpenv version-name) = '8.0' ]; then composer require laravel/legacy-factories --dev; fi
2022

2123
script:
2224
- ./vendor/bin/phpstan analyse -c .phpstan.neon

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to `laravel-love` will be documented in this file.
44

55
## [Unreleased]
66

7+
## [8.7.0] - 2020-12-06
8+
9+
### Added
10+
11+
- ([#185]) Added PHP 8.x support
12+
713
## [8.6.1] - 2020-10-04
814

915
### Changed
@@ -456,7 +462,8 @@ Follow [upgrade instructions](UPGRADING.md#from-v5-to-v6) to migrate database to
456462

457463
- Initial release
458464

459-
[Unreleased]: https://github.com/cybercog/laravel-love/compare/8.6.1...master
465+
[Unreleased]: https://github.com/cybercog/laravel-love/compare/8.7.0...master
466+
[8.7.0]: https://github.com/cybercog/laravel-love/compare/8.6.1...8.7.0
460467
[8.6.1]: https://github.com/cybercog/laravel-love/compare/8.6.0...8.6.1
461468
[8.6.0]: https://github.com/cybercog/laravel-love/compare/8.5.0...8.6.0
462469
[8.5.0]: https://github.com/cybercog/laravel-love/compare/8.4.0...8.5.0
@@ -500,6 +507,7 @@ Follow [upgrade instructions](UPGRADING.md#from-v5-to-v6) to migrate database to
500507
[1.1.1]: https://github.com/cybercog/laravel-love/compare/1.1.0...1.1.1
501508
[1.1.0]: https://github.com/cybercog/laravel-love/compare/1.0.0...1.1.0
502509

510+
[#185]: https://github.com/cybercog/laravel-love/pull/185
503511
[#178]: https://github.com/cybercog/laravel-love/pull/178
504512
[#177]: https://github.com/cybercog/laravel-love/pull/177
505513
[#176]: https://github.com/cybercog/laravel-love/pull/176

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"docs": "https://laravel-love.readme.io"
4747
},
4848
"require": {
49-
"php": "^7.1.3",
49+
"php": "^7.1.3|^8.0",
5050
"illuminate/database": "5.7.*|5.8.*|^6.0|^7.0|^8.0",
5151
"illuminate/support": "5.7.*|5.8.*|^6.0|^7.0|^8.0"
5252
},

0 commit comments

Comments
 (0)