Skip to content

Commit 256ac43

Browse files
authored
Add Laravel 8 support (#176)
Add Laravel 8 support
1 parent 5225460 commit 256ac43

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

.styleci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ disabled:
44
- concat_without_spaces
55
- phpdoc_no_package
66
- logical_not_operators_with_successor_space
7-
- simplified_null_return

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ before_script:
1515
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
1616
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
1717
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
18+
- if [ $(phpenv version-name) = '7.3' ]; then composer require laravel/legacy-factories --dev; fi
19+
- if [ $(phpenv version-name) = '7.4' ]; then composer require laravel/legacy-factories --dev; fi
1820

1921
script:
2022
- ./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.5.0]
8+
9+
### Added
10+
11+
- ([#176]) Added Laravel 8 support
12+
713
## [8.4.0]
814

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

439445
- Initial release
440446

441-
[Unreleased]: https://github.com/cybercog/laravel-love/compare/8.4.0...master
447+
[Unreleased]: https://github.com/cybercog/laravel-love/compare/8.5.0...master
448+
[8.5.0]: https://github.com/cybercog/laravel-love/compare/8.4.0...8.5.0
442449
[8.4.0]: https://github.com/cybercog/laravel-love/compare/8.3.1...8.4.0
443450
[8.3.1]: https://github.com/cybercog/laravel-love/compare/8.3.0...8.3.1
444451
[8.3.0]: https://github.com/cybercog/laravel-love/compare/8.2.0...8.3.0
@@ -479,6 +486,7 @@ Follow [upgrade instructions](UPGRADING.md#from-v5-to-v6) to migrate database to
479486
[1.1.1]: https://github.com/cybercog/laravel-love/compare/1.1.0...1.1.1
480487
[1.1.0]: https://github.com/cybercog/laravel-love/compare/1.0.0...1.1.0
481488

489+
[#176]: https://github.com/cybercog/laravel-love/pull/176
482490
[#165]: https://github.com/cybercog/laravel-love/pull/165
483491
[#161]: https://github.com/cybercog/laravel-love/pull/161
484492
[#158]: https://github.com/cybercog/laravel-love/pull/158

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@
4747
},
4848
"require": {
4949
"php": "^7.1.3",
50-
"illuminate/database": "5.7.*|5.8.*|^6.0|^7.0",
51-
"illuminate/support": "5.7.*|5.8.*|^6.0|^7.0"
50+
"illuminate/database": "5.7.*|5.8.*|^6.0|^7.0|^8.0",
51+
"illuminate/support": "5.7.*|5.8.*|^6.0|^7.0|^8.0"
5252
},
5353
"require-dev": {
5454
"mockery/mockery": "^1.0",
55-
"orchestra/database": "~3.7.0|~3.8.0|^4.0|^5.0",
56-
"orchestra/testbench": "~3.7.0|~3.8.0|^4.0|^5.0",
55+
"orchestra/database": "~3.7.0|~3.8.0|^4.0|^5.0|^6.0",
56+
"orchestra/testbench": "~3.7.0|~3.8.0|^4.0|^5.0|^6.0",
5757
"phpstan/phpstan": "^0.12.29",
5858
"phpunit/phpunit": "^7.5|^8.0|^9.0"
5959
},

0 commit comments

Comments
 (0)