-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 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
{
"name": "cspray/labrador",
"description": "Core functionality powering Labrador Kennel Applications through Plugins, Events, and Engines",
"keywords": ["amphp", "labrador-kennel"],
"license": "MIT",
"authors": [
{
"name": "Charles Sprayberry",
"email": "[email protected]",
"homepage": "https://labrador-kennel.io",
"role": "Project Maintainer"
}
],
"scripts": {
"code-lint": "vendor/bin/labrador-cs src/ test/",
"test": "vendor/bin/phpunit",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html ./build/coverage"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"adbario/php-dot-notation": "^2.2",
"amphp/amp": "^v3.0.0-beta.4",
"amphp/byte-stream": "v2.0.0-beta.5",
"amphp/log": "^v2.0.0-beta.1",
"amphp/pipeline": "v1.0.0-beta.3",
"amphp/sync": "v2.0.0-beta.3",
"cspray/labrador-async-event": "^3.0.0-beta1",
"cspray/labrador-exceptions": "^1.2",
"cspray/yape": "^3.1",
"monolog/monolog": "^2.0",
"rdlowrey/auryn": "^1.4"
},
"require-dev": {
"amphp/phpunit-util": "^v3.0.0-beta.2",
"cspray/labrador-coding-standard": "^0.2",
"phpunit/phpunit": "~9.1"
},
"autoload": {
"psr-4": {
"Cspray\\Labrador\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"Cspray\\Labrador\\Test\\": [
"test/"
]
}
}
}