-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
65 lines (65 loc) · 1.63 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
63
64
65
{
"name": "antidot-fw/event-dispatcher",
"description": "Antidot Framework PSR-14 event dispatcher library",
"keywords": [
"psr-11",
"psr-14"
],
"type": "library",
"license": "BSD-2-Clause",
"authors": [
{
"name": "kpicaza"
}
],
"require": {
"php": "^7.4|^8.0",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"infection/infection": "^0.21.0",
"phpro/grumphp": "^1.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.0 || ^9.0",
"react/event-loop": "^1.2",
"squizlabs/php_codesniffer": "^3.4",
"symfony/var-dumper": "^4.2 || ^5.0",
"vimeo/psalm": "^4.4"
},
"autoload": {
"psr-4": {
"Antidot\\Event\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AntidotTest\\Event\\": "test"
}
},
"scripts": {
"check-all": [
"@cs-check",
"@test",
"@inspect",
"@psalm",
"@infection"
],
"cs-check": "phpcs src --colors",
"cs-fix": "phpcbf src --colors",
"inspect": "phpstan analyse src -l7 --ansi",
"test": "phpunit --colors=always",
"psalm": "psalm",
"infection": "XDEBUG_MODE=coverage infection"
},
"config": {
"sort-packages": true
},
"suggest": {
"react/event-loop": "If you want to run Async Event Dispatcher implementation."
},
"extra": {
"laminas": {
"config-provider": "Antidot\\Event\\Container\\Config\\ConfigProvider"
}
}
}