forked from pimcore/google-marketing-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.14 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
{
"name": "pimcore/google-marketing-bundle",
"license": "GPL-3.0+",
"type": "pimcore-bundle",
"description": "Pimcore Google Marketing Bundle provides additional tools for integrating google marketing tools.",
"config": {
"sort-packages": true,
"preferred-install": {
"pimcore/pimcore": "source",
"*": "dist"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0",
"pimcore/pimcore": "^11.0",
"google/apiclient": "^2.12"
},
"require-dev": {
"phpstan/phpstan": "1.10.5",
"phpstan/phpstan-symfony": "^1.2.20",
"phpunit/phpunit": "^9.3",
"codeception/codeception": "^5.0.10",
"codeception/module-symfony":"^3.1.1",
"codeception/phpunit-wrapper": "^9",
"codeception/module-asserts": "^2"
},
"autoload": {
"psr-4": {
"Pimcore\\Bundle\\GoogleMarketingBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pimcore\\Bundle\\GoogleMarketingBundle\\Tests\\": "tests"
},
"files": [
"kernel/Kernel.php"
]
},
"extra": {
"pimcore": {
"bundles": [
"Pimcore\\Bundle\\GoogleMarketingBundle\\PimcoreGoogleMarketingBundle"
]
}
}
}