-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.52 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
{
"name": "softonic/laravel-protobuf-events",
"type": "library",
"description": "Helper to allow nuwber/rabbitevents to work with protobuf",
"keywords": [],
"license": "Apache-2.0",
"homepage": "https://github.com/softonic/laravel-protobuf-events",
"support": {
"issues": "https://github.com/softonic/laravel-protobuf-events/issues"
},
"require": {
"php": ">=8.1",
"ext-protobuf": "*",
"ext-pcntl": "*",
"ext-bcmath": "*",
"ext-sockets": "*",
"google/protobuf": "^3.19",
"nuwber/rabbitevents": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.50",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^8.21",
"phpunit/phpunit": "^9.0",
"rector/rector": "^0.11.20",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"Softonic\\LaravelProtobufEvents\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Softonic\\LaravelProtobufEvents\\": "tests/",
"GPBMetadata\\": "tests/GPBMetadata/"
}
},
"scripts": {
"test": [
"@checkstyle",
"@phpunit"
],
"phpunit": "phpunit --coverage-text",
"checkstyle": [
"php-cs-fixer fix -v --diff --dry-run --allow-risky=yes",
"rector --dry-run"
],
"fix-checkstyle": [
"@php-cs-fixer",
"@rector"
],
"php-cs-fixer": "php-cs-fixer fix -v --diff --allow-risky=yes",
"rector": "rector"
},
"extra": {
"laravel": {
"providers": [
"Softonic\\LaravelProtobufEvents\\ServiceProvider"
]
}
}
}