forked from Setono/SyliusAnalyticsPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.88 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
{
"name": "setono/sylius-analytics-plugin",
"type": "sylius-plugin",
"description": "Google Analytics plugin for Sylius",
"keywords": [
"sylius",
"sylius-plugin",
"setono",
"analytics",
"google"
],
"license": "MIT",
"require": {
"php": "^7.4",
"ext-json": "*",
"doctrine/collections": "^1.6",
"knplabs/knp-menu": "^3.1",
"psr/event-dispatcher": "^1.0",
"setono/tag-bag": "^1.4",
"setono/tag-bag-bundle": "^2.2",
"setono/tag-bag-gtag": "^1.4.1",
"setono/tag-bag-twig": "^1.1",
"sylius/resource-bundle": "^1.6",
"symfony/config": "^4.4 || ^5.0",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/event-dispatcher": "^4.4 || ^5.0",
"symfony/event-dispatcher-contracts": "^1.1",
"symfony/form": "^4.4 || ^5.0",
"symfony/http-foundation": "^4.4 || ^5.0.7",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/security-bundle": "^4.4 || ^5.0",
"thecodingmachine/safe": "^1.0",
"webmozart/assert": "^1.9"
},
"require-dev": {
"loevgaard/sylius-brand-plugin": "^2.1",
"matthiasnoback/symfony-config-test": "^4.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.2",
"phpspec/phpspec": "^6.3",
"phpunit/phpunit": "^9.5",
"psalm/plugin-symfony": "^2.2",
"roave/security-advisories": "dev-master",
"setono/code-quality-pack": "^1.5.2",
"setono/sylius-behat-pack": "^0.1",
"setono/sylius-tag-bag-plugin": "^1.1",
"sylius/sylius": "~1.7.0",
"symfony/debug-bundle": "^4.4 || ^5.0",
"symfony/dotenv": "^4.4 || ^5.0",
"symfony/intl": "^4.4 || ^5.0",
"symfony/web-profiler-bundle": "^4.4 || ^5.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"Setono\\SyliusAnalyticsPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Setono\\SyliusAnalyticsPlugin\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"prefer-stable": true,
"scripts": {
"analyse": [
"@ensure-test-container-exists",
"psalm"
],
"check-style": "ecs check --ansi spec/ src/ tests/",
"ensure-test-container-exists": "[[ -f tests/Application/var/cache/test/ApplicationTests_Setono_SyliusAnalyticsPlugin_Application_KernelTestDebugContainer.xml ]] || tests/Application/bin/console cache:warmup --env=test",
"fix-style": "ecs check --ansi spec/ src/ tests/ --fix",
"phpspec": "phpspec run",
"phpunit": "phpunit",
"test": [
"@phpunit",
"@phpspec"
]
}
}