-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
49 lines (49 loc) · 1.54 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
{
"name": "meinfernbus/google-bundle",
"description": "Fork of AntiMattr GoogleBundle. Static Google maps with caching, Adwords with remarketing & lots of other fixes.",
"keywords": ["google", "analytics", "adwords", "maps", "antimattr"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "antimattr",
"homepage": "https://github.com/antimattr"
},
{
"name": "EricReiche",
"homepage": "https://github.com/EricReiche"
},
{
"name": "MeinFernbus",
"homepage": "https://github.com/MeinFernbus"
}
],
"require": {
"php": "^7.2",
"symfony/dependency-injection": "^3.4 || ^4.4 || ^5.0",
"symfony/http-kernel": "^3.4 || ^4.4 || ^5.0",
"symfony/config": "^3.4 || ^4.4 || ^5.0"
},
"autoload": {
"psr-4": {
"AntiMattr\\GoogleBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AntiMattr\\GoogleBundle\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit -c .",
"cs": " vendor/bin/php-cs-fixer fix --config=.php_cs.dist"
},
"require-dev": {
"symfony/framework-bundle": " ^3.4 || ^4.4 || ^5.0",
"symfony/twig-bundle": " ^3.4 || ^4.4 || ^5.0",
"symfony/yaml": " ^3.4 || ^4.4 || ^5.0",
"symfony/browser-kit": " ^3.4 || ^4.4 || ^5.0",
"phpunit/phpunit": "^8.5 || ^9.4",
"irstea/php-cs-fixer-shim": "^2.16"
}
}