-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (34 loc) · 864 Bytes
/
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
{
"name": "solventt/event-dispatcher",
"description": "PSR-14 compatible event dispatcher",
"type": "library",
"keywords": ["event","dispatcher","psr-14"],
"license": "BSD-3-Clause",
"authors": [{"name": "Chibizov Gr."}],
"require": {
"php": "^8.0",
"psr/event-dispatcher": "^1.0.0"
},
"require-dev": {
"php-di/php-di": "^7.0",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.7"
},
"provide": {
"psr/event-dispatcher-implementation": "^1.0.0"
},
"autoload": {
"psr-4": {
"Solventt\\EventDispatcher\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Solventt\\EventDispatcher\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}