-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
70 lines (70 loc) · 2.24 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "setono/google-analytics-bundle",
"description": "Use Google Analytics in your Symfony application",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Joachim Løvgaard",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"setono/composite-compiler-pass": "^1.1",
"setono/google-analytics-measurement-protocol": "^1.0.0-alpha.8",
"setono/tag-bag": "^2.2",
"setono/tag-bag-bundle": "^3.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/event-dispatcher": "^5.4 || ^6.0",
"symfony/event-dispatcher-contracts": "^2.5 || ^3.2",
"symfony/filesystem": "^5.4 || ^6.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/messenger": "^5.4 || ^6.0",
"webmozart/assert": "^1.11",
"webmozart/glob": "^4.6"
},
"require-dev": {
"kriswallsmith/buzz": "^1.2.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.3.1",
"nyholm/psr7": "^1.5",
"nyholm/symfony-bundle-test": "^2.0",
"phpspec/prophecy-phpunit": "^2.0.2",
"phpunit/phpunit": "^9.6.10",
"psalm/plugin-phpunit": "^0.18.4",
"psalm/plugin-symfony": "^5.0.3",
"setono/code-quality-pack": "^2.4",
"setono/consent-bundle": "^1.0"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\GoogleAnalyticsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Setono\\GoogleAnalyticsBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"php-http/discovery": true
},
"sort-packages": true
},
"scripts": {
"analyse": "psalm",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"phpspec": "phpspec run",
"phpunit": "phpunit"
}
}