-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (51 loc) · 1.26 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
{
"name": "decodelabs/destiny",
"description": "Powerful schedule management system",
"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/dictum": "^0.6.3",
"decodelabs/enumerable": "^0.2",
"decodelabs/exceptional": "^0.5",
"decodelabs/glitch-support": "^0.5",
"decodelabs/guidance": "^0.1.11",
"decodelabs/slingshot": "^0.1.12",
"decodelabs/veneer": "^0.12.1",
"nesbot/carbon": "^2|^3",
"opis/json-schema": "^2.3"
},
"require-dev": {
"decodelabs/phpstan-decodelabs": "^0.7"
},
"autoload": {
"psr-4": {
"DecodeLabs\\Destiny\\": "src/"
},
"files": [
"src/Context.php"
]
},
"extra": {
"branch-alias": {
"dev-develop": "0.1.x-dev"
},
"effigy": {
"exports": [
"schema"
]
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}