Skip to content
This repository has been archived by the owner on Jan 12, 2020. It is now read-only.

Commit

Permalink
Merge pull request #10 from madewithlove/support-for-later-laravel-ve…
Browse files Browse the repository at this point in the history
…rsions

Add support for Laravel 5.4, 5.5 and 5.6
  • Loading branch information
dieterve authored May 7, 2018
2 parents 7041454 + 35088a9 commit 6d4ef9c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ All command handlers are resolved out of the [container](http://laravel.com/docs
$ composer require madewithlove/tactician-laravel
```

### Laravel <= 5.4

Add the service provider to `config/app.php`:

```php
Expand Down
13 changes: 10 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
],
"require": {
"php": ">=5.5.9",
"illuminate/container": "^5.0|^5.1|^5.2|^5.3",
"illuminate/database": "^5.0|^5.1|^5.2|^5.3",
"illuminate/support": "^5.0|^5.1|^5.2|^5.3",
"illuminate/container": "^5.0|^5.1|^5.2|^5.3|^5.4|^5.5|^5.6",
"illuminate/database": "^5.0|^5.1|^5.2|^5.3|^5.4|^5.5|^5.6",
"illuminate/support": "^5.0|^5.1|^5.2|^5.3|^5.4|^5.5|^5.6",
"league/tactician": "^1.0"
},
"require-dev": {
Expand All @@ -34,6 +34,13 @@
"Madewithlove\\Tactician\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Madewithlove\\Tactician\\ServiceProvider"
]
}
},
"scripts": {
"test": "phpunit",
"lint": "php-cs-fixer fix"
Expand Down

0 comments on commit 6d4ef9c

Please sign in to comment.