-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
42 lines (40 loc) · 1.17 KB
/
composer.json
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "slm/google-analytics",
"description": "Google Analytics tracking integration for Zend Framework 2",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"zf2",
"google analytics",
"ga"
],
"homepage": "https://github.com/juriansluiman/SlmGoogleAnalytics",
"authors": [
{
"name": "Jurian Sluiman",
"email": "[email protected]",
"homepage": "http://juriansluiman.nl"
}
],
"require": {
"php": ">=5.3.3.",
"zendframework/zend-escaper": "^2.5",
"zendframework/zend-eventmanager": "^2.5 | ^3.0",
"zendframework/zend-http": "^2.5",
"zendframework/zend-json": "^2.5 | ^3.0",
"zendframework/zend-modulemanager": "^2.5",
"zendframework/zend-mvc": "^2.5 | ^3.0",
"zendframework/zend-servicemanager": "^2.5 | ^3.0",
"zendframework/zend-view": "^2.5",
"container-interop/container-interop": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "4.1.*",
"squizlabs/php_codesniffer": "1.5.*"
},
"autoload": {
"classmap": [
"./"
]
}
}