-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
78 lines (78 loc) · 2.39 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
{
"name": "stefandoorn/google-tag-manager-plugin",
"type": "sylius-plugin",
"description": "Google Tag Manager plugin for Sylius.",
"license": "MIT",
"keywords": [
"sylius",
"sylius-plugin"
],
"require": {
"sylius/sylius": "^1.9",
"xynnn/google-tag-manager-bundle": "^3.1 || ^4.0"
},
"require-dev": {
"lchrusciel/api-test-case": "^5.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"phpspec/phpspec": "^7.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-strict-rules": "^1.1",
"phpstan/phpstan-symfony": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpunit/phpunit": "^9.5",
"sylius-labs/coding-standard": "^4.0",
"symfony/browser-kit": "^5.4 || ^6.0",
"symfony/debug-bundle": "^5.4 || ^6.0",
"symfony/dotenv": "^5.4 || ^6.0",
"symfony/intl": "^5.4 || ^6.0",
"symfony/web-profiler-bundle": "^5.4 || ^6.0",
"vimeo/psalm": "5.8.0"
},
"suggest": {
"stefandoorn/google-tag-manager-enhanced-ecommerce-plugin": "Integrate Sylius with Google Analytics Enhanced Ecommerce"
},
"config": {
"sort-packages": true,
"bin-dir": "bin",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"phpstan/extension-installer": false
}
},
"autoload": {
"psr-4": {
"GtmPlugin\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/Application/Kernel.php"
],
"psr-4": {
"Tests\\GtmPlugin\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"php bin/create_node_symlink.php"
],
"post-update-cmd": [
"php bin/create_node_symlink.php"
],
"post-create-project-cmd": [
"php bin/create_node_symlink.php"
],
"analyse": "bin/phpstan analyse -c phpstan.neon -l max src",
"check-style": "bin/ecs check --ansi src/ tests/",
"fix-style": "ecs check --ansi src/ tests/ --fix",
"phpspec": "bin/phpspec run --ansi",
"phpunit": "bin/phpunit",
"psalm": "bin/psalm",
"test": [
"@phpunit",
"@phpspec"
]
}
}