Skip to content

Commit

Permalink
Add Laravel 7.x support (#158)
Browse files Browse the repository at this point in the history
Add Laravel 7.x support
  • Loading branch information
antonkomarev committed Mar 6, 2020
1 parent c0e793d commit a032e92
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 76 deletions.
64 changes: 0 additions & 64 deletions .php_cs

This file was deleted.

10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to `laravel-love` will be documented in this file.

## [Unreleased]

## [8.3.1] - 2020-03-06

### Added

- ([#158]) Add Laravel 7.x support

## [8.3.0] - 2020-02-16

### Added
Expand Down Expand Up @@ -422,7 +428,8 @@ Follow [upgrade instructions](UPGRADING.md#from-v5-to-v6) to migrate database to

- Initial release

[Unreleased]: https://github.com/cybercog/laravel-love/compare/8.3.0...master
[Unreleased]: https://github.com/cybercog/laravel-love/compare/8.3.1...master
[8.3.1]: https://github.com/cybercog/laravel-love/compare/8.3.0...8.3.1
[8.3.0]: https://github.com/cybercog/laravel-love/compare/8.2.0...8.3.0
[8.2.0]: https://github.com/cybercog/laravel-love/compare/8.1.2...8.2.0
[8.1.2]: https://github.com/cybercog/laravel-love/compare/8.1.1...8.1.2
Expand Down Expand Up @@ -461,6 +468,7 @@ Follow [upgrade instructions](UPGRADING.md#from-v5-to-v6) to migrate database to
[1.1.1]: https://github.com/cybercog/laravel-love/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/cybercog/laravel-love/compare/1.0.0...1.1.0

[#158]: https://github.com/cybercog/laravel-love/pull/158
[#151]: https://github.com/cybercog/laravel-love/pull/151
[#148]: https://github.com/cybercog/laravel-love/pull/148
[#147]: https://github.com/cybercog/laravel-love/pull/147
Expand Down
6 changes: 1 addition & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,7 @@ Due to time constraints, we are not always able to respond as quickly as we woul

## Coding Guidelines

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:

```shell script
$ vendor/bin/php-cs-fixer fix
```
This project follows [PSR-12 coding style guide](https://www.php-fig.org/psr/psr-12/).

## PHPUnit tests

Expand Down
11 changes: 5 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,14 @@
},
"require": {
"php": "^7.1.3",
"illuminate/database": "5.7.*|5.8.*|^6.0",
"illuminate/support": "5.7.*|5.8.*|^6.0"
"illuminate/database": "5.7.*|5.8.*|^6.0|^7.0",
"illuminate/support": "5.7.*|5.8.*|^6.0|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.10",
"mockery/mockery": "^1.0",
"orchestra/database": "~3.7.0|~3.8.0|^4.0",
"orchestra/testbench": "~3.7.0|~3.8.0|^4.0",
"phpunit/phpunit": "^7.5|^8.0"
"orchestra/database": "~3.7.0|~3.8.0|^4.0|^5.0",
"orchestra/testbench": "~3.7.0|~3.8.0|^4.0|^5.0",
"phpunit/phpunit": "^7.5|^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit a032e92

Please sign in to comment.