-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
71 lines (71 loc) · 1.88 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
66
67
68
69
70
71
{
"name": "phly/phly-event-dispatcher",
"description": "Experimental event dispatcher for PSR-14",
"license": "BSD-3-Clause",
"keywords": [
"components",
"psr-14",
"event-dispatcher"
],
"support": {
"issues": "https://github.com/phly/phly-event-dispatcher/issues",
"source": "https://github.com/phly/phly-event-dispatcher",
"rss": "https://github.com/phly/phly-event-dispatcher/releases.atom"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"psr/container": "^1.0 || ^2.0",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"fig/event-dispatcher-util": "^1.0",
"phpunit/phpunit": "^10.5",
"laminas/laminas-coding-standard": "~2.3.0"
},
"conflict": {
"phpspec/prophecy": "<1.7.5"
},
"provide": {
"psr/event-dispatcher-implementation": "^1.0"
},
"autoload": {
"files": [
"src/functions/lazy_listener.php"
],
"psr-4": {
"Phly\\EventDispatcher\\": "src/"
}
},
"autoload-dev": {
"files": [
"test/TestAsset/listener_function.php"
],
"psr-4": {
"PhlyTest\\EventDispatcher\\": "test/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.1.99"
},
"sort-packages": true
},
"extra": {
"laminas": {
"config-provider": "Phly\\EventDispatcher\\ConfigProvider"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}