-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.87 KB
/
Copy pathcomposer.json
File metadata and controls
66 lines (66 loc) · 1.87 KB
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
{
"name": "avto-dev/rabbitmq-api-client",
"description": "RabbitMQ API Client implementation",
"keywords": [
"laravel",
"rabbitmq",
"client"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "avto-dev",
"homepage": "https://github.com/avto-dev"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.10",
"illuminate/contracts": "~11.0 || ~12.0 || ~13.0",
"illuminate/support": "~11.0 || ~12.0 || ~13.0",
"illuminate/config": "~11.0 || ~12.0 || ~13.0",
"composer/package-versions-deprecated": "^1.11"
},
"require-dev": {
"laravel/laravel": "~11.0 || ~12.0 || ~13.0",
"phpstan/phpstan": "^1.12.27",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"AvtoDev\\RabbitMqApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AvtoDev\\RabbitMqApiClient\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"AvtoDev\\RabbitMqApiClient\\Frameworks\\Illuminate\\LaravelServiceProvider"
]
}
},
"scripts": {
"phpunit": "@php ./vendor/bin/phpunit --no-coverage --colors=always",
"phpunit-cover": "@php ./vendor/bin/phpunit --coverage-html='./coverage/html'",
"phpstan": "@php ./vendor/bin/phpstan analyze -c ./phpstan.neon.dist --no-progress --ansi",
"test": [
"@phpstan",
"@phpunit"
],
"test-cover": [
"@phpstan",
"@phpunit-cover"
]
},
"support": {
"issues": "https://github.com/avto-dev/rabbitmq-api-client/issues",
"source": "https://github.com/avto-dev/rabbitmq-api-client"
}
}