WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit bc9cefe

Browse files
Add support for L5.6
1 parent 7fee273 commit bc9cefe

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to Laravel-Analytics will be documented in this file
44

5+
# 3.4.1 - 2018-02-08
6+
- add compatibility with Laravel 5.6
7+
58
## 3.4.0 - 2018-01-08
69
- allow dynamic modification of config
710

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This package can be installed through Composer.
3636
composer require spatie/laravel-analytics
3737
```
3838

39-
In Laravel 5.5 the package will autoregister the service provider. In Laravel 5.4 you must install this service provider.
39+
In Laravel 5.5 and above the package will autoregister the service provider. In Laravel 5.4 you must install this service provider.
4040

4141
```php
4242
// config/app.php
@@ -47,7 +47,7 @@ In Laravel 5.5 the package will autoregister the service provider. In Laravel 5.
4747
];
4848
```
4949

50-
In Laravel 5.5 the package will autoregister the facade. In Laravel 5.4 you must install the facade manually.
50+
In Laravel 5.5 and above the package will autoregister the facade. In Laravel 5.4 you must install the facade manually.
5151

5252
```php
5353
// config/app.php

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@
2222
"require": {
2323
"php" : "^7.0",
2424
"google/apiclient" : "^2.0",
25-
"illuminate/contracts": "~5.4.0|~5.5.0",
26-
"illuminate/support": "~5.4.0|~5.5.0",
25+
"illuminate/contracts": "~5.4.0|~5.5.0|~5.6.0",
26+
"illuminate/support": "~5.4.0|~5.5.0|~5.6.0",
2727
"madewithlove/illuminate-psr-cache-bridge": "^1.0",
2828
"nesbot/carbon": "^1.21"
2929

3030
},
3131
"require-dev": {
3232
"mockery/mockery": "^1.0",
33-
"orchestra/testbench" : "~3.4.6|~3.5.0",
34-
"phpunit/phpunit" : "^6.1"
33+
"orchestra/testbench" : "~3.4.6|~3.5.0|~3.6.0",
34+
"phpunit/phpunit" : "^6.1|^7.0"
3535
},
3636
"autoload": {
3737
"psr-4": {

0 commit comments

Comments
 (0)