-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
61 lines (61 loc) · 1.64 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
{
"name": "phly/phly-event-emitter",
"description": "PSR-14 event emitter",
"license": "BSD-3-Clause",
"keywords": [
"psr-14",
"event"
],
"support": {
"issues": "https://github.com/phly/phly-event-emitter/issues",
"source": "https://github.com/phly/phly-event-emitter",
"rss": "https://github.com/phly/phly-event-emitter/releases.atom"
},
"require": {
"php": "^7.1",
"fig/event-dispatcher-util": "^0.6.1",
"psr/event-dispatcher-message": "^0.6",
"psr/event-dispatcher-task": "^0.6",
"zendframework/zend-stdlib": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^7.1.1",
"zendframework/zend-coding-standard": "~1.0.0"
},
"provide": {
"psr/event-dispatcher-implementation": "^0.6",
"psr/event-dispatcher-message-implementation": "^0.6",
"psr/event-dispatcher-task-implementation": "^0.6"
},
"autoload": {
"psr-4": {
"Phly\\EventEmitter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhlyTest\\EventEmitter\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"zf": {
"config-provider": "Phly\\EventEmitter\\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"
}
}