Skip to content

Commit

Permalink
Added Laravel 7 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebronner committed Feb 29, 2020
1 parent 62bc6f1 commit ceb8d37
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 16 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
language: php

php:
- 7.2
- 7.2.5
- 7.3
- 7.4

before_script:
- travis_retry composer self-update
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
(This is already detected in subscription update.)
- Filter any incoming web-hook events that are in test mode.

## [0.10.0] - 2020-02-29
### Added
- Laravel 7 compatibility.

## [0.9.1] - 2019-10-18
### Added
- functionality to inject custom data points into track events.
Expand Down
27 changes: 13 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,25 @@
}
},
"require": {
"illuminate/auth": "^5.5|^6.0",
"illuminate/config": "^5.5|^6.0",
"illuminate/console": "^5.5|^6.0",
"illuminate/events": "^5.5|^6.0",
"illuminate/http": "^5.5|^6.0",
"illuminate/routing": "^5.5|^6.0",
"illuminate/queue": "^5.5|^6.0",
"illuminate/support": "^5.5|^6.0",
"illuminate/auth": "^7.0",
"illuminate/config": "^7.0",
"illuminate/console": "^7.0",
"illuminate/events": "^7.0",
"illuminate/http": "^7.0",
"illuminate/routing": "^7.0",
"illuminate/queue": "^7.0",
"illuminate/support": "^7.0",
"mixpanel/mixpanel-php": "^2.7",
"sinergi/browser-detector": "^6.1"
},
"require-dev": {
"fzaninotto/faker": "^1.8",
"laravel/laravel": "^6.0",
"laravel/browser-kit-testing": "^5.1",
"mockery/mockery": "^1.2",
"laravel/laravel": "dev-develop@dev",
"laravel/browser-kit-testing": "dev-master@dev",
"phpmd/phpmd": "^2.7",
"phpunit/phpunit": "^8.4",
"sebastian/phpcpd": "^4.1",
"symfony/thanks": "^1.0",
"phpunit/phpunit": "^8.5",
"sebastian/phpcpd": "^5.0",
"symfony/thanks": "^1.2",
"php-coveralls/php-coveralls": "^2.1",
"squizlabs/php_codesniffer": "^3.5"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/Fixtures/App/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class HomeController extends Controller
*/
public function __construct()
{
$this->middleware('auth');
$this->middleware(['auth']);
}

/**
Expand Down

0 comments on commit ceb8d37

Please sign in to comment.