-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (49 loc) · 1.24 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
{
"name": "decodelabs/tagged",
"description": "PHP markup generation without the fuss",
"type": "library",
"keywords": [ "markup", "html", "generator" ],
"license": "MIT",
"authors": [ {
"name": "Tom Wright",
"email": "[email protected]"
} ],
"require": {
"php": "^8.1",
"ext-intl": "*",
"symfony/polyfill-mbstring": "^1.7",
"decodelabs/coercion": "^0.2",
"decodelabs/collections": "^0.9",
"decodelabs/cosmos": "^0.2",
"decodelabs/elementary": "^0.4",
"decodelabs/exceptional": "^0.4",
"decodelabs/glitch-support": "^0.4",
"decodelabs/veneer": "^0.11.6"
},
"require-dev": {
"decodelabs/phpstan-decodelabs": "^0.6"
},
"suggest": {
"nesbot/carbon": "Support for time interval formatting"
},
"autoload": {
"psr-4": {
"DecodeLabs\\Tagged\\": "src/"
},
"files": [
"src/Factory.php"
]
},
"extra": {
"branch-alias": {
"dev-develop": "0.15.x-dev"
}
},
"repositories": {
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}