-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
93 lines (93 loc) · 2.68 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
{
"type": "project",
"license": "proprietary",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://repo.packagist.com/productsupcom/"
},
{
"packagist.org": false
}
],
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"productsupcom/dk-core-bundle": "v0.0.*",
"productsupcom/lib-dk-testing": "v0.0.*",
"symfony/console": "7.*",
"symfony/dotenv": "7.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "7.*",
"symfony/messenger": "7.*",
"symfony/runtime": "7.*",
"symfony/yaml": "7.*",
"symfony/http-kernel": "7.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"mikey179/vfsstream": "^1.6",
"phpmd/phpmd": "^2.11",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^10",
"roave/security-advisories": "dev-latest",
"symfony/phpunit-bridge": "7.*"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Productsup\\BinCdeShopifyMetafields\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Productsup\\BinCdeShopifyMetafields\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"test": "vendor/bin/phpunit",
"csfix": "vendor/bin/php-cs-fixer fix --verbose",
"csdiff": "vendor/bin/php-cs-fixer fix --stop-on-violation --verbose --dry-run --diff",
"stan": "vendor/bin/phpstan analyze src",
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html ./tests/logs/coverage",
"phpmd-report": "vendor/bin/phpmd src/ html rulesets.xml --reportfile phpmd_report.html",
"phpmd": "vendor/bin/phpmd src/ ansi rulesets.xml"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.*"
}
}
}