Skip to content

Commit 354ff6e

Browse files
authored
Add Laravel 8 support (#69)
Add Laravel 8 support
1 parent e89586e commit 354ff6e

File tree

6 files changed

+16
-7
lines changed

6 files changed

+16
-7
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.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/phpunit -c phpunit.xml.dist --verbose

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@ All notable changes to `cybercog/laravel-eloquent-flag` will be documented in th
44

55
## [Unreleased]
66

7+
## [5.2.0] - 2020-09-09
8+
9+
### Added
10+
11+
- ([#69]) Add Laravel 8 support
12+
713
## [5.1.2] - 2020-03-06
814

915
### Added
1016

11-
- ([#65]) Add Laravel 7.x support
17+
- ([#65]) Add Laravel 7 support
1218

1319
## [5.1.1] - 2020-02-20
1420

@@ -284,7 +290,8 @@ All notable changes to `cybercog/laravel-eloquent-flag` will be documented in th
284290

285291
- `is_active` boolean flag added.
286292

287-
[Unreleased]: https://github.com/cybercog/laravel-eloquent-flag/compare/5.1.2...master
293+
[Unreleased]: https://github.com/cybercog/laravel-eloquent-flag/compare/5.2.0...master
294+
[5.2.0]: https://github.com/cybercog/laravel-eloquent-flag/compare/5.1.2...5.2.0
288295
[5.1.2]: https://github.com/cybercog/laravel-eloquent-flag/compare/5.1.1...5.1.2
289296
[5.1.1]: https://github.com/cybercog/laravel-eloquent-flag/compare/5.1.0...5.1.1
290297
[5.1.0]: https://github.com/cybercog/laravel-eloquent-flag/compare/5.0.0...5.1.0
@@ -312,6 +319,7 @@ All notable changes to `cybercog/laravel-eloquent-flag` will be documented in th
312319
[1.2.0]: https://github.com/cybercog/laravel-eloquent-flag/compare/1.1.0...1.2.0
313320
[1.1.0]: https://github.com/cybercog/laravel-eloquent-flag/compare/1.0.0...1.1.0
314321

322+
[#69]: https://github.com/cybercog/laravel-eloquent-flag/pull/69
315323
[#65]: https://github.com/cybercog/laravel-eloquent-flag/pull/65
316324
[#62]: https://github.com/cybercog/laravel-eloquent-flag/pull/62
317325
[#59]: https://github.com/cybercog/laravel-eloquent-flag/pull/59

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
![cog-laravel-eloquent-flag](https://user-images.githubusercontent.com/1849174/53454214-7d38d680-3a37-11e9-953d-8daee98fb087.png)
44

55
<p align="center">
6+
<a href="https://discord.gg/rBqKTVT"><img src="https://img.shields.io/static/v1?logo=discord&label=&message=Discord&color=36393f&style=flat-square" alt="Discord"></a>
67
<a href="https://github.com/cybercog/laravel-eloquent-flag/releases"><img src="https://img.shields.io/github/release/cybercog/laravel-eloquent-flag.svg?style=flat-square" alt="Releases"></a>
78
<a href="https://travis-ci.org/cybercog/laravel-eloquent-flag"><img src="https://img.shields.io/travis/cybercog/laravel-eloquent-flag/master.svg?style=flat-square" alt="Build Status"></a>
89
<a href="https://styleci.io/repos/69245607"><img src="https://styleci.io/repos/69245607/shield" alt="StyleCI"></a>

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@
5454
},
5555
"require": {
5656
"php": "^7.1.3",
57-
"illuminate/database": "^5.8|^6.0|^7.0"
57+
"illuminate/database": "^5.8|^6.0|^7.0|^8.0"
5858
},
5959
"require-dev": {
6060
"mockery/mockery": "^1.0",
61-
"orchestra/database": "~3.8.0|^4.0|^5.0",
62-
"orchestra/testbench": "~3.8.0|^4.0|^5.0",
61+
"orchestra/database": "~3.8.0|^4.0|^5.0|^6.0",
62+
"orchestra/testbench": "~3.8.0|^4.0|^5.0|^6.0",
6363
"phpunit/phpunit": "^7.0|^8.0|^9.0"
6464
},
6565
"autoload": {

0 commit comments

Comments
 (0)