forked from theiconic/php-ga-measurement-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 687 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "theiconic/php-ga-measurement-protocol",
"description": "Send data to Google Analytics from the server using PHP. This library fully implements GA measurement protocol.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "THE ICONIC ENGINEERING TEAM",
"email": "engineering@theiconic.com.au"
}
],
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "4.7.*",
"satooshi/php-coveralls": "1.0.1"
},
"autoload": {
"psr-4": {
"TheIconic\\Tracking\\GoogleAnalytics\\": "src/"
}
}
}