-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (77 loc) · 1.86 KB
/
composer.json
File metadata and controls
78 lines (77 loc) · 1.86 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "decodelabs/tagged",
"description": "PHP markup generation without the fuss",
"type": "library",
"keywords": [
"markup",
"html",
"generator"
],
"license": "MIT",
"authors": [
{
"name": "Tom Wright",
"email": "tom@inflatablecookie.com"
}
],
"require": {
"php": "^8.4",
"ext-intl": "*",
"symfony/polyfill-mbstring": "^1.33",
"decodelabs/archetype": "^0.4",
"decodelabs/coercion": "^0.3.5",
"decodelabs/collections": "^0.12",
"decodelabs/cosmos": "^0.3",
"decodelabs/elementary": "^0.6.3",
"decodelabs/exceptional": "^0.6.3",
"decodelabs/kingdom": "^0.2",
"decodelabs/monarch": "^0.2.1",
"decodelabs/slingshot": "^0.3"
},
"require-dev": {
"decodelabs/chorus": ">0",
"decodelabs/lucid": "^0.8",
"decodelabs/phpstan-decodelabs": "^0.7"
},
"conflict": {
"decodelabs/lucid": "<0.6"
},
"suggest": {
"nesbot/carbon": "Support for time interval formatting"
},
"autoload": {
"psr-4": {
"DecodeLabs\\Tagged\\": "src/Tagged",
"DecodeLabs\\PHPStan\\": "src/PHPStan"
},
"classmap": [
"src/Tagged.php",
"src/Lucid/"
]
},
"autoload-dev": {
"psr-4": {
"DecodeLabs\\Tagged\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "0.21.x-dev"
},
"effigy": {
"exports": [
"phpstan-extension.neon"
]
},
"phpstan": {
"includes": [
"phpstan-extension.neon"
]
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}