-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
62 lines (62 loc) · 1.72 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
{
"name": "labrador-kennel/framework",
"description": "A framework for building asynchronous applications with Amp and Annotated Container.",
"license": "MIT",
"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"
},
"minimum-stability": "beta",
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-pcntl": "*",
"amphp/cache": "^v2.0.0",
"amphp/http": "^v2.0",
"amphp/http-server": "^v3.0",
"amphp/http-server-session": "^v3.0",
"amphp/http-server-static-content": "^2.0",
"amphp/log": "^v2.0",
"cspray/annotated-container": "^v2.2",
"labrador-kennel/async-event": "^3.0",
"labrador-kennel/async-event-autowire": "^1.0",
"league/uri": "^7",
"league/uri-components": "^7",
"monolog/monolog": "^3",
"nikic/fast-route": "^1.3",
"ocramius/package-versions": "^2.7",
"php-di/php-di": "^v7.0",
"ramsey/uuid": "^4.4",
"respect/validation": "^2.2"
},
"require-dev": {
"amphp/http-client": "^v5.0",
"amphp/phpunit-util": "^v3.0",
"cspray/labrador-coding-standard": "0.1.0",
"cspray/stream-buffer-intercept": "^0.1.0",
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^9.5",
"psalm/phar": "^5.0",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Labrador\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Labrador\\Test\\": "test",
"Labrador\\DummyApp\\": "dummy_app/src"
}
},
"extra": {
"$annotatedContainer": {
"initializers": [
"Labrador\\Web\\Autowire\\Initializer"
]
}
}
}