Skip to content

Commit 043a49f

Browse files
authored
Merge branch 'master' into test-lowest-composer-stability
2 parents 67d238a + 11f9be8 commit 043a49f

File tree

4 files changed

+38
-8
lines changed

4 files changed

+38
-8
lines changed

.github/dependabot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2
2+
updates:
3+
4+
# Maintain dependencies for GitHub Actions
5+
- package-ecosystem: "github-actions"
6+
directory: "/"
7+
schedule:
8+
interval: "monthly"
9+
day: "monday"
10+
assignees:
11+
- "octocat"
12+
13+
# Maintain dependencies for Composer
14+
- package-ecosystem: "composer"
15+
directory: "/"
16+
schedule:
17+
interval: "monthly"
18+
day: "monday"
19+
assignees:
20+
- "octocat"

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Thank you for being interesting in this package and wanting to contribute to it.
55
## Coding
66

77
New code should be introduced to the codebase through issues that specify what you are trying to accomplish.
8-
I understand that sometimes you need add/update/delete code otherwhere in the codebase to achieve this goal.
8+
I understand that sometimes you need to add/update/delete code otherwhere in the codebase to achieve this goal.
99
This is why my test always merges master in to ensure that your code stays functional/executable during development.
1010

1111
Please adhere these pointers:
12-
* Support selected PHP Verisons | Ref: [Master/Package.json](https://github.com/AlexWestergaard/php-ga4/blob/master/composer.json)
12+
* Support selected PHP Versions | Ref: [Master/Composer.json](https://github.com/AlexWestergaard/php-ga4/blob/master/composer.json)
1313
* Pass current tests without modification; unless clearly explaining why the change is necessary/required | `> vendor/bin/phpunit`
1414
* PHPUnit tests should confidently ensure that code doesn't fail/error in unwated ways (eg. E_WARNINGS or missing paranthesis)
1515
* At least try to follow PSR<1, 4, 12> and \*PSR<5, 10> for documentation | Ref: [PHP FIG.](https://www.php-fig.org/psr/)

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1-
PHP Wrapper for Google Analytics 4 with Server Side Tracking
1+
_Package_
22

3-
[![PHP Version](https://img.shields.io/packagist/php-v/alexwestergaard/php-ga4?color=blue&style=for-the-badge)](https://www.php.net/releases/)
4-
[![Release Size](https://img.shields.io/github/languages/code-size/alexwestergaard/php-ga4?color=blue&style=for-the-badge)](https://github.com/AlexWestergaard/php-ga4/releases/latest)
5-
[![Issues](https://img.shields.io/github/issues-raw/alexwestergaard/php-ga4?color=red&style=for-the-badge)](https://github.com/AlexWestergaard/php-ga4/issues)
3+
[![Version](https://img.shields.io/packagist/v/alexwestergaard/php-ga4?color=blue&label=stable)](https://github.com/aawnu/php-ga4/releases/latest)
4+
[![License](https://img.shields.io/packagist/l/alexwestergaard/php-ga4?color=blue)](https://github.com/aawnu/php-ga4/blob/master/LICENSE)
5+
[![PHPVersion](https://img.shields.io/packagist/php-v/alexwestergaard/php-ga4?color=blue)](https://www.php.net/releases)
6+
[![Size](https://img.shields.io/github/languages/code-size/aawnu/php-ga4?color=blue)](https://github.com/aawnu/php-ga4/releases/latest)
7+
8+
_Development_
9+
10+
[![Version](https://img.shields.io/packagist/v/alexwestergaard/php-ga4?color=red&include_prereleases&label=latest)](https://github.com/aawnu/php-ga4/releases)
11+
[![Issues](https://img.shields.io/github/issues-raw/alexwestergaard/php-ga4?color=red&label=issues)](https://github.com/aawnu/php-ga4/issues)
12+
[![Pulls](https://img.shields.io/github/issues-pr/aawnu/php-ga4?color=red&label=pulls)](https://github.com/aawnu/php-ga4/pulls)
13+
[![Contributors](https://img.shields.io/github/contributors/aawnu/php-ga4?color=red)](https://github.com/aawnu/php-ga4/graphs/contributors)
14+
[![LastCommit](https://img.shields.io/github/last-commit/aawnu/php-ga4/master?color=red)](https://github.com/aawnu/php-ga4/commits)
615

716
```sh
817
composer require alexwestergaard/php-ga4

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"analytics",
1111
"analytics 4",
1212
"google analytics",
13+
"google analytics 4",
1314
"server side tracking",
1415
"tracking",
1516
"ga4",
@@ -41,12 +42,12 @@
4142
}
4243
},
4344
"require": {
44-
"php": "^8.0.0|8.1.0|8.2.0",
45+
"php": ">=8.0,<8.3",
4546
"guzzlehttp/guzzle": "^7.0"
4647
},
4748
"require-dev": {
4849
"phpunit/phpunit": "^9.0|^10.0"
4950
},
5051
"minimum-stability": "stable",
5152
"prefer-stable": true
52-
}
53+
}

0 commit comments

Comments
 (0)