Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Added support for Laravel 6.x and 7.x #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jul 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Adds optimistic locking feature to Eloquent models.
composer require reshadman/laravel-optimistic-locking
```

> This package supports Laravel 5.5.*, 5.6.*, 5.7.* and 5.8.*.
> This package supports Laravel 5.5.*, 5.6.*, 5.7.*, 5.8.*, 6.* and 7.*.

## Usage

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
],
"require": {
"php": "^7.1",
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0"
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"mockery/mockery": "^1.0.0",
"orchestra/testbench": "~3.5.0|~3.6.0",
"phpunit/phpunit" : "^7.0"
"orchestra/testbench": "~3.5.0|~3.6.0|~3.8.0|^4.0|^5.0",
"phpunit/phpunit" : "^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class TestCase extends Orchestra
{
public function setUp()
protected function setUp() : void
{
parent::setUp();

Expand Down