-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (44 loc) · 1.07 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
{
"name": "decodelabs/veneer",
"description": "Automated static facades",
"type": "library",
"keywords": [ "library", "tools", "facade" ],
"license": "MIT",
"authors": [ {
"name": "Tom Wright",
"email": "tom@inflatablecookie.com"
} ],
"require": {
"php": "^8.1",
"decodelabs/exceptional": "^0.4",
"decodelabs/glitch-support": "^0.4",
"psr/container": "^2"
},
"require-dev": {
"composer-runtime-api": "^2.2",
"decodelabs/pandora": "^0.2.11",
"decodelabs/slingshot": "^0.1.1",
"decodelabs/phpstan-decodelabs": "^0.6"
},
"suggest": {
"decodelabs/slingshot": "Complex plugin instantiation support"
},
"autoload": {
"psr-4": {
"DecodeLabs\\": "src/"
}
},
"bin": [
"bin/veneer-stub"
],
"extra": {
"branch-alias": {
"dev-develop": "0.11.x-dev"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}