-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
45 lines (45 loc) · 1.79 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
43
44
45
{
"name": "happyr/google-analytics-bundle",
"type": "symfony-bundle",
"description": "The Google Analytics Bundle lets you send data (like event tracking) to Google.",
"keywords": ["Google", "Analytics", "Google Analytics"],
"homepage": "http://developer.happyr.com/symfony2-bundles/google-analytics-bundle",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0",
"psr/cache": "^1.0",
"cache/void-adapter": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"symfony/config": "^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1 || ^5.0",
"symfony/dependency-injection": "^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1 || ^5.0",
"symfony/event-dispatcher": "^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1 || ^5.0",
"symfony/http-foundation": "^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1 || ^5.0",
"symfony/http-kernel": "^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5.4 || ^8.5",
"symfony/framework-bundle": "^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1 || ^5.0",
"symfony/browser-kit": "^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1 || ^5.0",
"nyholm/symfony-bundle-test": "^1.4"
},
"suggest": {
"happyr/google-site-authenticator-bundle": "To be able to fetch data from google analytics.",
"php-http/httplug-bundle": "To register HTTP clients as services"
},
"autoload": {
"psr-4": {
"Happyr\\GoogleAnalyticsBundle\\": ""
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}