This repository was archived by the owner on Jan 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +23
-9
lines changed Expand file tree Collapse file tree 4 files changed +23
-9
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ matrix:
14
14
env : LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-lowest'
15
15
- php : 7.4
16
16
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'
17
21
fast_finish : true
18
22
19
23
before_install :
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` laravel-analytics-event-tracking ` will be documented in this file
4
4
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
+
5
13
## 1.0.0 - 2020-05-07
6
14
7
- - initial release
15
+ - Initial release
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Laravel package to easily send events to [Google Analytics](https://analytics.go
15
15
* Full access to the [ underlying library] ( https://github.com/theiconic/php-ga-measurement-protocol ) .
16
16
* API calls to GA are queued.
17
17
* Easy to configure.
18
- * Compatible with Laravel 6.0 and 7.0 .
18
+ * Compatible with Laravel 6.0 and higher .
19
19
* PHP 7.4 required.
20
20
21
21
## Installation
Original file line number Diff line number Diff line change 10
10
" laravel-analytics-event-tracking" ,
11
11
" analytics-event-tracking"
12
12
],
13
- "homepage" : " https://github.com/pascalbaljetmedia /laravel-analytics-event-tracking" ,
13
+ "homepage" : " https://github.com/protonemedia /laravel-analytics-event-tracking" ,
14
14
"license" : " MIT" ,
15
15
"type" : " library" ,
16
16
"authors" : [
22
22
],
23
23
"require" : {
24
24
"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 " ,
29
29
"theiconic/php-ga-measurement-protocol" : " ^2.7"
30
30
},
31
31
"require-dev" : {
32
- "orchestra/testbench" : " ^4.0 || ^5.0" ,
32
+ "orchestra/testbench" : " ^4.0 || ^5.0 || ^6.0 " ,
33
33
"mockery/mockery" : " ^1.3" ,
34
34
"phpunit/phpunit" : " ^8.3"
35
35
},
50
50
"config" : {
51
51
"sort-packages" : true
52
52
},
53
+ "minimum-stability" : " dev" ,
54
+ "prefer-stable" : true ,
53
55
"extra" : {
54
56
"laravel" : {
55
57
"providers" : [
56
58
" ProtoneMedia\\ AnalyticsEventTracking\\ ServiceProvider"
57
59
]
58
60
}
59
61
}
60
- }
62
+ }
You can’t perform that action at this time.
0 commit comments