-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
61 lines (61 loc) · 1.39 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
{
"name": "phpinnacle/ridge",
"type": "library",
"description": "PHPinnacle async AMQP client",
"keywords": [
"phpinnacle",
"async",
"amqp"
],
"homepage": "https://github.com/phpinnacle/ridge",
"license": "MIT",
"authors": [
{
"name": "PHPinnacle",
"email": "[email protected]",
"homepage": "https://phpinnacle.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"amphp/amp": "v2.6.*",
"amphp/socket": "v1.2.*",
"phpinnacle/buffer": "v1.2.*",
"evenement/evenement": "v3.0.*"
},
"require-dev": {
"phpunit/phpunit": "10.* || 11.*",
"vimeo/psalm": "5.*",
"phpstan/phpstan": "^1.10"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"PHPinnacle\\Ridge\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPinnacle\\Ridge\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "./vendor/bin/psalm --config=psalm.xml",
"phpstan": "./vendor/bin/phpstan analyse src --level 9",
"tests": "./vendor/bin/phpunit --configuration phpunit.xml",
"coverage": "./vendor/bin/phpunit --configuration phpunit.xml --coverage-html ./coverage --verbose"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"composer/package-versions-deprecated": false
}
}
}