-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
94 lines (94 loc) · 3.1 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "setono/sylius-analytics-plugin",
"description": "Google Analytics plugin for Sylius",
"license": "MIT",
"type": "sylius-plugin",
"keywords": [
"sylius",
"sylius-plugin",
"setono",
"analytics",
"google"
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"doctrine/collections": "^1.8",
"doctrine/doctrine-bundle": "^2.7",
"doctrine/orm": "^2.14",
"knplabs/knp-menu": "^3.3",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"setono/composite-compiler-pass": "^1.1",
"setono/google-analytics-bundle": "^2.0@alpha",
"setono/google-analytics-events": "^1.0@rc",
"setono/google-analytics-measurement-protocol": "^2.0@beta",
"sylius/channel": "^1.0",
"sylius/channel-bundle": "^1.0",
"sylius/core": "^1.8",
"sylius/grid-bundle": "^1.10",
"sylius/locale": "^1.0",
"sylius/order": "^1.0",
"sylius/product": "^1.0",
"sylius/resource-bundle": "^1.8",
"sylius/taxonomy": "^1.0",
"sylius/ui-bundle": "^1.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/event-dispatcher": "^5.4 || ^6.0",
"symfony/form": "^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"
},
"require-dev": {
"api-platform/core": "^2.7.13",
"behat/behat": "^3.13",
"icanhazstring/composer-unused": "^0.8.10",
"matthiasnoback/symfony-config-test": "^4.3",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"php-http/message-factory": "^1.1",
"phpspec/prophecy-phpunit": "^2.0.2",
"phpunit/phpunit": "^9.6.10",
"psalm/plugin-phpunit": "^0.18",
"setono/code-quality-pack": "^2.4",
"sylius/sylius": "~1.10.14",
"symfony/debug-bundle": "^5.4 || ^6.0",
"symfony/dotenv": "^5.4 || ^6.0",
"symfony/intl": "^5.4 || ^6.0",
"symfony/property-info": "^5.4 || ^6.0",
"symfony/serializer": "^5.4 || ^6.0",
"symfony/web-profiler-bundle": "^5.4 || ^6.0",
"symfony/webpack-encore-bundle": "^1.17.1"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\SyliusAnalyticsPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Setono\\SyliusAnalyticsPlugin\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"symfony/thanks": false,
"php-http/discovery": false
},
"sort-packages": true
},
"scripts": {
"analyse": "psalm",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"phpunit": "phpunit"
}
}