forked from phly/phly-event-dispatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 1.84 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
{
"name": "phpactor/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",
"psr/container": "^1.0||^2.0",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"fig/event-dispatcher-util": "^1.0",
"friendsofphp/php-cs-fixer": "^2.17",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.0.0",
"zendframework/zend-coding-standard": "~1.0.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": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"prefer-stable": true,
"minimum-stability": "dev"
}