-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (41 loc) · 1.02 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/atlas",
"description": "Easy filesystem and io functions",
"type": "library",
"keywords": [ "filesystem", "io", "file", "directory" ],
"license": "MIT",
"authors": [ {
"name": "Tom Wright",
"email": "tom@inflatablecookie.com"
} ],
"require": {
"php": "^8.1",
"decodelabs/coercion": "^0.2",
"decodelabs/deliverance": "^0.2.11",
"decodelabs/enumerable": "^0.1.3",
"decodelabs/exceptional": "^0.4",
"decodelabs/glitch-support": "^0.4",
"decodelabs/veneer": "^0.11.6"
},
"require-dev": {
"decodelabs/phpstan-decodelabs": "^0.6"
},
"autoload": {
"psr-4": {
"DecodeLabs\\Atlas\\": "src/"
},
"files": [
"src/Context.php"
]
},
"extra": {
"branch-alias": {
"dev-develop": "0.12.x-dev"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}