first commit

This commit is contained in:
2024-11-05 12:22:50 +01:00
commit e5682a3912
19641 changed files with 2948548 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
{
"name": "br33f/php-ga4-mp",
"description": "PHP GoogleAnalytics4 Measurement Protocol Library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Damian Zamojski",
"email": "damian.zamojski1@gmail.com"
}
],
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "^6.5.5 || ^7.0.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Br33f\\Ga4\\MeasurementProtocol\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"fakerphp/faker": "^1.14",
"php-coveralls/php-coveralls": "^2.4"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}