File tree Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -4,4 +4,3 @@ disabled:
4
4
- concat_without_spaces
5
5
- phpdoc_no_package
6
6
- logical_not_operators_with_successor_space
7
- - simplified_null_return
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ before_script:
15
15
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
16
16
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
17
17
- 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
18
20
19
21
script :
20
22
- ./vendor/bin/phpstan analyse -c .phpstan.neon
Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to `laravel-love` will be documented in this file.
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 8.5.0]
8
+
9
+ ### Added
10
+
11
+ - ([ #176 ] ) Added Laravel 8 support
12
+
7
13
## [ 8.4.0]
8
14
9
15
### Added
@@ -438,7 +444,8 @@ Follow [upgrade instructions](UPGRADING.md#from-v5-to-v6) to migrate database to
438
444
439
445
- Initial release
440
446
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
442
449
[ 8.4.0 ] : https://github.com/cybercog/laravel-love/compare/8.3.1...8.4.0
443
450
[ 8.3.1 ] : https://github.com/cybercog/laravel-love/compare/8.3.0...8.3.1
444
451
[ 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
479
486
[ 1.1.1 ] : https://github.com/cybercog/laravel-love/compare/1.1.0...1.1.1
480
487
[ 1.1.0 ] : https://github.com/cybercog/laravel-love/compare/1.0.0...1.1.0
481
488
489
+ [ #176 ] : https://github.com/cybercog/laravel-love/pull/176
482
490
[ #165 ] : https://github.com/cybercog/laravel-love/pull/165
483
491
[ #161 ] : https://github.com/cybercog/laravel-love/pull/161
484
492
[ #158 ] : https://github.com/cybercog/laravel-love/pull/158
Original file line number Diff line number Diff line change 47
47
},
48
48
"require" : {
49
49
"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 "
52
52
},
53
53
"require-dev" : {
54
54
"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 " ,
57
57
"phpstan/phpstan" : " ^0.12.29" ,
58
58
"phpunit/phpunit" : " ^7.5|^8.0|^9.0"
59
59
},
You can’t perform that action at this time.
0 commit comments