-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
45 lines (45 loc) · 1.01 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": "lexik/data-layer-bundle",
"license": "MIT",
"type": "symfony-bundle",
"keywords": ["symfony", "bundle", "tag manager", "data layer", "analytics", "google"],
"homepage": "https://github.com/lexik/LexikDataLayerBundle",
"description": "Manipulate the Google Tag Manager Data Layer from your Symfony application.",
"authors": [
{
"name": "Nicolas Cabot",
"email": "[email protected]"
},
{
"name": "Dev Lexik",
"email": "[email protected]"
}
],
"require": {
"symfony/framework-bundle": "~2.7|~3.0|~4.0",
"symfony/security-bundle": "~2.7|~3.0|~4.0",
"twig/twig": "~1.0|~2.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~3.3",
"symfony/yaml": "^2.7|^3.0|^4.0"
},
"autoload": {
"psr-4": {
"Lexik\\Bundle\\DataLayerBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"test": [
"simple-phpunit"
]
}
}