-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (45 loc) · 1.08 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
{
"name": "decodelabs/integra",
"description": "Composer file inspector and front-end",
"type": "library",
"keywords": [ ],
"license": "MIT",
"authors": [ {
"name": "Tom Wright",
"email": "[email protected]"
} ],
"require": {
"php": "^8.4",
"decodelabs/atlas": "^0.12",
"decodelabs/coercion": "^0.3",
"decodelabs/collections": "^0.10",
"decodelabs/exceptional": "^0.5",
"decodelabs/lucid": "^0.5",
"decodelabs/systemic": "^0.11",
"decodelabs/veneer": "^0.12.1"
},
"require-dev": {
"decodelabs/terminus": "^0.11",
"decodelabs/phpstan-decodelabs": "^0.7"
},
"autoload": {
"psr-4": {
"DecodeLabs\\Integra\\": "src/"
},
"files": [
"src/Context.php"
]
},
"extra": {
"branch-alias": {
"dev-develop": "0.1.x-dev"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"repositories": {
}
}