-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (48 loc) · 1.29 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/lucid",
"description": "Flexible and expansive sanitisation and validation framework",
"type": "library",
"keywords": [ "validation", "sanitisation", "input" ],
"license": "MIT",
"authors": [ {
"name": "Tom Wright",
"email": "[email protected]"
} ],
"require": {
"php": "^8.1",
"decodelabs/archetype": "^0.3",
"decodelabs/coercion": "^0.2.2",
"decodelabs/dictum": "^0.6",
"decodelabs/exceptional": "^0.4",
"decodelabs/lucid-support": "^0.4",
"decodelabs/veneer": "^0.11.6",
"nesbot/carbon": "^2|^3"
},
"require-dev": {
"decodelabs/compass": "^0.2",
"decodelabs/phpstan-decodelabs": "^0.6",
"decodelabs/spectrum": "^0.2.1"
},
"suggest": {
"decodelabs/compass": "IP address validation support",
"decodelabs/spectrum": "Color validation support"
},
"autoload": {
"psr-4": {
"DecodeLabs\\Lucid\\": "src/"
},
"files": [
"src/Context.php"
]
},
"extra": {
"branch-alias": {
"dev-develop": "0.4.x-dev"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}