Skip to content

Commit e89586e

Browse files
authored
Add Laravel 7.x support (#65)
Add Laravel 7.x support
1 parent 8466523 commit e89586e

File tree

6 files changed

+14
-77
lines changed

6 files changed

+14
-77
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
/tests export-ignore
55
/.gitattributes export-ignore
66
/.gitignore export-ignore
7-
/.php_cs export-ignore
87
/.styleci.yml export-ignore
98
/.travis.yml export-ignore
109
/CODE_OF_CONDUCT.md export-ignore

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.idea/
22
vendor/
3-
.php_cs.cache
43
.phpunit.result.cache
54
composer.lock
65
composer.phar

.php_cs

Lines changed: 0 additions & 64 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to `cybercog/laravel-eloquent-flag` will be documented in th
44

55
## [Unreleased]
66

7+
## [5.1.2] - 2020-03-06
8+
9+
### Added
10+
11+
- ([#65]) Add Laravel 7.x support
12+
713
## [5.1.1] - 2020-02-20
814

915
### Fixed
@@ -278,7 +284,8 @@ All notable changes to `cybercog/laravel-eloquent-flag` will be documented in th
278284

279285
- `is_active` boolean flag added.
280286

281-
[Unreleased]: https://github.com/cybercog/laravel-eloquent-flag/compare/5.1.1...master
287+
[Unreleased]: https://github.com/cybercog/laravel-eloquent-flag/compare/5.1.2...master
288+
[5.1.2]: https://github.com/cybercog/laravel-eloquent-flag/compare/5.1.1...5.1.2
282289
[5.1.1]: https://github.com/cybercog/laravel-eloquent-flag/compare/5.1.0...5.1.1
283290
[5.1.0]: https://github.com/cybercog/laravel-eloquent-flag/compare/5.0.0...5.1.0
284291
[5.0.0]: https://github.com/cybercog/laravel-eloquent-flag/compare/4.0.0...5.0.0
@@ -305,6 +312,7 @@ All notable changes to `cybercog/laravel-eloquent-flag` will be documented in th
305312
[1.2.0]: https://github.com/cybercog/laravel-eloquent-flag/compare/1.1.0...1.2.0
306313
[1.1.0]: https://github.com/cybercog/laravel-eloquent-flag/compare/1.0.0...1.1.0
307314

315+
[#65]: https://github.com/cybercog/laravel-eloquent-flag/pull/65
308316
[#62]: https://github.com/cybercog/laravel-eloquent-flag/pull/62
309317
[#59]: https://github.com/cybercog/laravel-eloquent-flag/pull/59
310318
[#56]: https://github.com/cybercog/laravel-eloquent-flag/pull/56

CONTRIBUTING.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,7 @@ Due to time constraints, we are not always able to respond as quickly as we woul
1919

2020
## Coding Guidelines
2121

22-
This project comes with a configuration file for php-cs-fixer (.php_cs) that you can use to (re)format your sourcecode for compliance with this project's coding guidelines:
23-
24-
```shell script
25-
$ vendor/bin/php-cs-fixer fix
26-
```
22+
This project follows [PSR-12 coding style guide](https://www.php-fig.org/psr/psr-12/).
2723

2824
## PHPUnit tests
2925

composer.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,13 @@
5454
},
5555
"require": {
5656
"php": "^7.1.3",
57-
"illuminate/database": "5.8.*|^6.0"
57+
"illuminate/database": "^5.8|^6.0|^7.0"
5858
},
5959
"require-dev": {
60-
"friendsofphp/php-cs-fixer": "^2.10",
6160
"mockery/mockery": "^1.0",
62-
"orchestra/database": "~3.8.0|^4.0",
63-
"orchestra/testbench": "~3.8.0|^4.0",
64-
"phpunit/phpunit": "^7.0|^8.0"
61+
"orchestra/database": "~3.8.0|^4.0|^5.0",
62+
"orchestra/testbench": "~3.8.0|^4.0|^5.0",
63+
"phpunit/phpunit": "^7.0|^8.0|^9.0"
6564
},
6665
"autoload": {
6766
"psr-4": {

0 commit comments

Comments
 (0)