-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
66 lines (66 loc) · 1.74 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
{
"name": "crell/tukio",
"type": "library",
"description": "A robust, stand-alone PSR-14 event dispatcher implementation.",
"keywords": [
"Tukio",
"PSR-14",
"Events"
],
"homepage": "https://github.com/Crell/Tukio",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Larry Garfield",
"email": "[email protected]",
"homepage": "http://www.garfieldtech.com/",
"role": "Developer"
}
],
"require": {
"php": "~8.1",
"crell/attributeutils": "^1.1",
"crell/ordered-collection": "~2.0",
"fig/event-dispatcher-util": "^1.3",
"psr/container": "^1.0 || ^2.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"phpbench/phpbench": "^1.2",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.3"
},
"provide": {
"psr/event-dispatcher-implementation": "1.0"
},
"autoload": {
"psr-4": {
"Crell\\Tukio\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Crell\\Tukio\\": "tests",
"Crell\\Tukio\\Benchmarks\\": "benchmarks"
}
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan",
"coverage": "php -dextension=pcov.so -dpcov.enabled=1 -dpcov.directory=src vendor/bin/phpunit --coverage-text",
"all-checks": [
"phpunit",
"phpstan"
],
"benchmarks": "vendor/bin/phpbench run benchmarks --report=aggregate"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}