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

Commit 94b7ee5

Browse files
authored
Merge pull request #1 from protonemedia/laravel-8.0
Laravel 8.0
2 parents 03b5ec2 + 0f0371e commit 94b7ee5

File tree

4 files changed

+23
-9
lines changed

4 files changed

+23
-9
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ matrix:
1414
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-lowest'
1515
- php: 7.4
1616
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-stable'
17+
- php: 7.4
18+
env: LARAVEL='8.*' TESTBENCH='6.*' COMPOSER_FLAGS='--prefer-lowest'
19+
- php: 7.4
20+
env: LARAVEL='8.*' TESTBENCH='6.*' COMPOSER_FLAGS='--prefer-stable'
1721
fast_finish: true
1822

1923
before_install:

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

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

5+
## 1.1.0 - 2020-09-04
6+
7+
- Support for Laravel 8.0
8+
9+
## 1.0.1 - 2020-05-09
10+
11+
- Fixed typo
12+
513
## 1.0.0 - 2020-05-07
614

7-
- initial release
15+
- Initial release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Laravel package to easily send events to [Google Analytics](https://analytics.go
1515
* Full access to the [underlying library](https://github.com/theiconic/php-ga-measurement-protocol).
1616
* API calls to GA are queued.
1717
* Easy to configure.
18-
* Compatible with Laravel 6.0 and 7.0.
18+
* Compatible with Laravel 6.0 and higher.
1919
* PHP 7.4 required.
2020

2121
## Installation

composer.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"laravel-analytics-event-tracking",
1111
"analytics-event-tracking"
1212
],
13-
"homepage": "https://github.com/pascalbaljetmedia/laravel-analytics-event-tracking",
13+
"homepage": "https://github.com/protonemedia/laravel-analytics-event-tracking",
1414
"license": "MIT",
1515
"type": "library",
1616
"authors": [
@@ -22,14 +22,14 @@
2222
],
2323
"require": {
2424
"php": "^7.4",
25-
"illuminate/bus": "^6.0 || ^7.0",
26-
"illuminate/queue": "^6.0 || ^7.0",
27-
"illuminate/http": "^6.0 || ^7.0",
28-
"illuminate/validation": "^6.0 || ^7.0",
25+
"illuminate/bus": "^6.0 || ^7.0 || ^8.0",
26+
"illuminate/queue": "^6.0 || ^7.0 || ^8.0",
27+
"illuminate/http": "^6.0 || ^7.0 || ^8.0",
28+
"illuminate/validation": "^6.0 || ^7.0 || ^8.0",
2929
"theiconic/php-ga-measurement-protocol": "^2.7"
3030
},
3131
"require-dev": {
32-
"orchestra/testbench": "^4.0 || ^5.0",
32+
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0",
3333
"mockery/mockery": "^1.3",
3434
"phpunit/phpunit": "^8.3"
3535
},
@@ -50,11 +50,13 @@
5050
"config": {
5151
"sort-packages": true
5252
},
53+
"minimum-stability": "dev",
54+
"prefer-stable": true,
5355
"extra": {
5456
"laravel": {
5557
"providers": [
5658
"ProtoneMedia\\AnalyticsEventTracking\\ServiceProvider"
5759
]
5860
}
5961
}
60-
}
62+
}

0 commit comments

Comments
 (0)