-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.5 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
{
"name": "decodelabs/labs-playground",
"description": "Example playground app for testing DecodeLabs features ",
"type": "project",
"keywords": [ ],
"license": "MIT",
"authors": [ {
"name": "Tom Wright",
"email": "[email protected]"
} ],
"repositories": {
"castaway": {
"url": "[email protected]:decodelabs/castaway.git",
"type": "git"
}
},
"require": {
"php": "^8.4",
"decodelabs/castaway": "^0.1.0@dev",
"decodelabs/exceptional": "^0.5.3",
"decodelabs/fabric": "^0.5.3",
"decodelabs/greenleaf": "^0.6",
"decodelabs/harvest": "^0.4.5",
"decodelabs/horizon": "^0.1.0",
"decodelabs/tagged": "^0.16.4",
"decodelabs/zest": "^0.5"
},
"require-dev": {
"decodelabs/phpstan-decodelabs": "^0.7.0"
},
"autoload": {
"psr-4": {
"DecodeLabs\\Playground\\": "src/"
}
},
"extra": {
"effigy": {
"entry": "vendor/decodelabs/fabric/src/Bootstrap.php",
"codeDirs": [
"config",
"src"
],
"exports": [
".iota",
"public"
]
},
"branch-alias": {
"dev-develop": "0.1.x-dev"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}