Skip to content
This repository was archived by the owner on Jan 2, 2024. It is now read-only.

Laravel 8.0 #1

Merged
merged 1 commit into from
Sep 4, 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
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ matrix:
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-lowest'
- php: 7.4
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-stable'
- php: 7.4
env: LARAVEL='8.*' TESTBENCH='6.*' COMPOSER_FLAGS='--prefer-lowest'
- php: 7.4
env: LARAVEL='8.*' TESTBENCH='6.*' COMPOSER_FLAGS='--prefer-stable'
fast_finish: true

before_install:
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to `laravel-analytics-event-tracking` will be documented in this file

## 1.1.0 - 2020-09-04

- Support for Laravel 8.0

## 1.0.1 - 2020-05-09

- Fixed typo

## 1.0.0 - 2020-05-07

- initial release
- Initial release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Laravel package to easily send events to [Google Analytics](https://analytics.go
* Full access to the [underlying library](https://github.com/theiconic/php-ga-measurement-protocol).
* API calls to GA are queued.
* Easy to configure.
* Compatible with Laravel 6.0 and 7.0.
* Compatible with Laravel 6.0 and higher.
* PHP 7.4 required.

## Installation
Expand Down
16 changes: 9 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"laravel-analytics-event-tracking",
"analytics-event-tracking"
],
"homepage": "https://github.com/pascalbaljetmedia/laravel-analytics-event-tracking",
"homepage": "https://github.com/protonemedia/laravel-analytics-event-tracking",
"license": "MIT",
"type": "library",
"authors": [
Expand All @@ -22,14 +22,14 @@
],
"require": {
"php": "^7.4",
"illuminate/bus": "^6.0 || ^7.0",
"illuminate/queue": "^6.0 || ^7.0",
"illuminate/http": "^6.0 || ^7.0",
"illuminate/validation": "^6.0 || ^7.0",
"illuminate/bus": "^6.0 || ^7.0 || ^8.0",
"illuminate/queue": "^6.0 || ^7.0 || ^8.0",
"illuminate/http": "^6.0 || ^7.0 || ^8.0",
"illuminate/validation": "^6.0 || ^7.0 || ^8.0",
"theiconic/php-ga-measurement-protocol": "^2.7"
},
"require-dev": {
"orchestra/testbench": "^4.0 || ^5.0",
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^8.3"
},
Expand All @@ -50,11 +50,13 @@
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"ProtoneMedia\\AnalyticsEventTracking\\ServiceProvider"
]
}
}
}
}