-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (44 loc) · 1.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
{
"name": "esb/health-check-symfony",
"type": "library",
"require": {
"php": ">=7.4",
"esb/health-check": "dev-master",
"symfony/framework-bundle": "^3.4 || ^4.1.12 || ^5.0 || ^6.0",
"predis/predis": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^9",
"symfony/phpunit-bridge": "^3.4 || ^4.1.12 || ^5.0 || ^6.0",
"php-amqplib/php-amqplib": "^3.2",
"php-amqplib/rabbitmq-bundle": "^2.0",
"squizlabs/php_codesniffer": "*",
"symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"symfony/browser-kit": "^3.4 || ^4.4 || ^5.0 || ^6.0"
},
"autoload": {
"psr-4": {
"Esb\\HealthCheckSymfony\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"check-cs": "./vendor/bin/phpcs",
"fix-cs": "./vendor/bin/phpcbf",
"unittest": "php vendor/bin/phpunit tests"
},
"repositories": [
{
"type": "composer",
"url": "https://satis.ganet.pw"
},
{
"type": "vcs",
"url": "[email protected]:IlyasAkbergen/healthcheck.git"
}
]
}