Skip to content

Commit ceb8d37

Browse files
committed
Added Laravel 7 compatibility.
1 parent 62bc6f1 commit ceb8d37

File tree

4 files changed

+20
-16
lines changed

4 files changed

+20
-16
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
language: php
22

33
php:
4-
- 7.2
4+
- 7.2.5
55
- 7.3
6+
- 7.4
67

78
before_script:
89
- travis_retry composer self-update

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
99
(This is already detected in subscription update.)
1010
- Filter any incoming web-hook events that are in test mode.
1111

12+
## [0.10.0] - 2020-02-29
13+
### Added
14+
- Laravel 7 compatibility.
15+
1216
## [0.9.1] - 2019-10-18
1317
### Added
1418
- functionality to inject custom data points into track events.

composer.json

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,25 @@
1414
}
1515
},
1616
"require": {
17-
"illuminate/auth": "^5.5|^6.0",
18-
"illuminate/config": "^5.5|^6.0",
19-
"illuminate/console": "^5.5|^6.0",
20-
"illuminate/events": "^5.5|^6.0",
21-
"illuminate/http": "^5.5|^6.0",
22-
"illuminate/routing": "^5.5|^6.0",
23-
"illuminate/queue": "^5.5|^6.0",
24-
"illuminate/support": "^5.5|^6.0",
17+
"illuminate/auth": "^7.0",
18+
"illuminate/config": "^7.0",
19+
"illuminate/console": "^7.0",
20+
"illuminate/events": "^7.0",
21+
"illuminate/http": "^7.0",
22+
"illuminate/routing": "^7.0",
23+
"illuminate/queue": "^7.0",
24+
"illuminate/support": "^7.0",
2525
"mixpanel/mixpanel-php": "^2.7",
2626
"sinergi/browser-detector": "^6.1"
2727
},
2828
"require-dev": {
2929
"fzaninotto/faker": "^1.8",
30-
"laravel/laravel": "^6.0",
31-
"laravel/browser-kit-testing": "^5.1",
32-
"mockery/mockery": "^1.2",
30+
"laravel/laravel": "dev-develop@dev",
31+
"laravel/browser-kit-testing": "dev-master@dev",
3332
"phpmd/phpmd": "^2.7",
34-
"phpunit/phpunit": "^8.4",
35-
"sebastian/phpcpd": "^4.1",
36-
"symfony/thanks": "^1.0",
33+
"phpunit/phpunit": "^8.5",
34+
"sebastian/phpcpd": "^5.0",
35+
"symfony/thanks": "^1.2",
3736
"php-coveralls/php-coveralls": "^2.1",
3837
"squizlabs/php_codesniffer": "^3.5"
3938
},

tests/Fixtures/App/Http/Controllers/HomeController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class HomeController extends Controller
1313
*/
1414
public function __construct()
1515
{
16-
$this->middleware('auth');
16+
$this->middleware(['auth']);
1717
}
1818

1919
/**

0 commit comments

Comments
 (0)