-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
46 lines (46 loc) · 1.1 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": "fig/event-dispatcher-util",
"type": "library",
"description": "Useful utility classes and traits for implementing the PSR events standard",
"keywords": [
"PSR-14",
"Events"
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/php-fig/event-dispatcher"
}
],
"homepage": "https://github.com/php-fig/event-dispatcher-util",
"license": "MIT",
"authors": [
{
"name": "PHP-FIG",
"homepage": "https://www.php-fig.org/"
},
{
"name": "Larry Garfield",
"email": "[email protected]",
"homepage": "https://www.garfieldtech.com/",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"psr/event-dispatcher": "^1.0"
},
"autoload": {
"psr-4": {
"Fig\\EventDispatcher\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fig\\EventDispatcher\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^8.5"
}
}