-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1.21 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
{
"name": "labrador-kennel/async-event",
"description": "Trigger semantic application events powered by Amp Event Loop",
"keywords": ["amphp", "event-emitter", "labrador-kennel"],
"license": "MIT",
"authors": [
{
"name": "Charles Sprayberry",
"email": "[email protected]",
"homepage": "https://labrador-kennel.io",
"role": "Project Maintainer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/cspray/phpunit-util"
}
],
"require": {
"php": "^8.2",
"amphp/amp": "~v3.0",
"labrador-kennel/composite-future": "^1.2"
},
"require-dev": {
"amphp/phpunit-util": "dev-phpunit-10-support",
"cspray/labrador-coding-standard": "0.2.0",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10",
"psalm/phar": "^5.6",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Labrador\\AsyncEvent\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Labrador\\AsyncEvent\\Test\\": "test/"
}
},
"suggest": {
"labrador-kennel/async-event-autowire": "If using cspray/annotated-container will allow you to automatically register Listener implementations into your Emitter."
}
}