-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (49 loc) · 1.22 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
{
"name": "decodelabs/impulse",
"description": "PSR-14 compatible event hook system",
"type": "library",
"keywords": [ ],
"license": "MIT",
"authors": [ {
"name": "Tom Wright",
"email": "[email protected]"
} ],
"require": {
"php": "^8.4",
"psr/event-dispatcher": "^1",
"decodelabs/archetype": "^0.3.6",
"decodelabs/exceptional": "^0.5",
"decodelabs/slingshot": "^0.1.12",
"decodelabs/veneer": "^0.12.1"
},
"require-dev": {
"decodelabs/phpstan-decodelabs": "^0.7",
"decodelabs/atlas": "^0.12",
"decodelabs/genesis": "^0.11"
},
"provide": {
"psr/event-dispatcher-implementation": "1.0"
},
"suggest": {
"decodelabs/atlas": "Enable hook map caching",
"decodelabs/genesis": "Enable hook map caching"
},
"autoload": {
"psr-4": {
"DecodeLabs\\Impulse\\": "src/"
},
"files": [
"src/Context.php"
]
},
"extra": {
"branch-alias": {
"dev-develop": "0.3.x-dev"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}