-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
68 lines (68 loc) · 2.6 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
{
"name": "run-as-root/magento2-message-queue-retry",
"description": "Provides message queue retry processing functionality via RabbitMQ's dead letter exchange.",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Cristiano Pacheco",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"magento/framework": "~103.0.5",
"magento/module-backend": "~102.0.5",
"magento/module-config": "~101.2.5",
"magento/module-ui": "~101.2.5",
"php-amqplib/php-amqplib": "^v3.2.0",
"magento/framework-amqp": "~100.4.3"
},
"require-dev": {
"phpunit/phpunit": "~9.5.20",
"phpmd/phpmd": "^2.13",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "~3.7.0",
"magento/magento-coding-standard": "*",
"phpcompatibility/php-compatibility": "^9.3",
"slevomat/coding-standard": "^8.8",
"sebastian/phpcpd": "^6.0",
"pdepend/pdepend": "^2.13",
"bitexpert/phpstan-magento": "^0.29.0"
},
"repositories": [
{
"type": "composer",
"url": "https://mirror.mage-os.org/",
"only": [
"magento/*"
]
}
],
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"RunAsRoot\\MessageQueueRetry\\": "src"
}
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": false,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../slevomat/coding-standard,../../magento/magento-coding-standard/,../../phpcompatibility/php-compatibility)"
],
"test": "./vendor/bin/phpunit -c phpunit.xml",
"phpstan": "phpstan",
"sniffer": "vendor/bin/phpcs --colors -p ./src --standard=phpcs-ruleset.xml",
"fix-style": "vendor/bin/phpcbf --colors -p ./src --standard=phpcs-ruleset.xml",
"sniffer:php8.1": "vendor/bin/phpcs -p ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.1",
"sniffer:php8.2": "vendor/bin/phpcs -p ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.2",
"mess-detector": "vendor/bin/phpmd src html phpmd-ruleset.xml --exclude \"Test\" --strict --reportfile reports/phpmd/phpmd.html"
}
}