-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (41 loc) · 1.01 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
{
"name": "decodelabs/castaway",
"description": "Front end component islands architecture",
"type": "library",
"keywords": [ ],
"license": "MIT",
"authors": [ {
"name": "Tom Wright",
"email": "[email protected]"
} ],
"require": {
"php": "^8.4",
"decodelabs/exceptional": "^0.5.3",
"decodelabs/greenleaf": "^0.4.1",
"decodelabs/harvest": "^0.4.1",
"decodelabs/tagged": "^0.16.3",
"decodelabs/veneer": "^0.12.6",
"decodelabs/zest": "^0.2.22"
},
"require-dev": {
"decodelabs/phpstan-decodelabs": "^0.7.0"
},
"autoload": {
"psr-4": {
"DecodeLabs\\Castaway\\": "src/Castaway/"
},
"files": [
"src/Castaway/Context.php"
]
},
"extra": {
"branch-alias": {
"dev-develop": "0.1.x-dev"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}