-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.38 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
46
47
48
49
50
51
{
"name": "cyber-duck/laravel-google-tag-manager",
"description": "A laravel package to add Google Tag Manager tracking and features to an app",
"type": "laravel-module",
"homepage": "https://github.com/cyber-duck/laravel-google-tag-manager",
"keywords": [
"laravel",
"google",
"tag manager"
],
"license": "MIT",
"authors": [
{
"name": "Andrew Mc Cormack",
"email": "andrewm@cyber-duck.co.uk"
},
{
"name": "Simone Todaro",
"email": "simo.todaro@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/config": "~5.0",
"illuminate/support": "~5.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"laravel/laravel": "~5.0",
"symfony/dom-crawler": "2.8.*|3.0.*",
"fzaninotto/faker": "^1.6"
},
"support": {
"issues": "https://github.com/cyber-duck/laravel-google-tag-manager/issues"
},
"autoload": {
"psr-4": {
"CyberDuck\\LaravelGoogleTagManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CyberDuck\\LaravelGoogleTagManager\\Tests\\": "tests/",
"CyberDuck\\LaravelGoogleTagManager\\Tests\\Models\\": "tests/app/"
}
},
"extra": {
"installer-name": "gtm"
},
"prefer-stable": true
}