This repository has been archived by the owner on Jun 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 2 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
{
"name": "php-service-bus/transport-phpinnacle",
"description": "phpinnacle RabbitMQ adapter",
"type": "library",
"keywords": [
"async-php",
"command-bus",
"messaging",
"amqp",
"rabbitmq"
],
"authors": [
{
"name": "Masiukevich Maksim",
"email": "[email protected]",
"homepage": "https://github.com/mmasiukevich",
"role": "Developer"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"ServiceBus\\Transport\\PhpInnacle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ServiceBus\\Common\\Tests\\": "vendor/php-service-bus/common/tests",
"ServiceBus\\Transport\\Common\\Tests\\": "vendor/php-service-bus/transport-common/tests",
"ServiceBus\\Transport\\Amqp\\Tests\\": "vendor/php-service-bus/transport-amqp/tests",
"ServiceBus\\Transport\\PhpInnacle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.3",
"php-service-bus/transport-common": "v4.0.*",
"php-service-bus/transport-amqp": "v4.0.*",
"phpinnacle/ridge": "v1.0.*"
},
"require-dev": {
"php-service-bus/code-style-config": "v1.2.*",
"phpunit/phpunit": "v8.4.*",
"vimeo/psalm": "v3.7.*",
"phpstan/phpstan": "v0.11.*"
},
"prefer-stable": true,
"minimum-stability": "stable",
"scripts": {
"psalm": "./vendor/bin/psalm --config=psalm.xml",
"phpstan": "./vendor/bin/phpstan analyse src --level 7",
"tests": "./vendor/bin/phpunit --configuration phpunit.xml --verbose",
"coverage": "./vendor/bin/phpunit --configuration phpunit.xml --coverage-html ./coverage --verbose",
"cs-check": "./vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run",
"cs-fix": "./vendor/bin/php-cs-fixer fix --allow-risky=yes",
"pre-commit": "PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix --allow-risky=yes && ./vendor/bin/psalm --config=psalm.xml && ./vendor/bin/phpstan analyse src --level 7 && ./vendor/bin/phpunit --configuration phpunit.xml --verbose"
},
"config": {
"optimize-autoloader": true
}
}