-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.05 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.05 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
{
"name": "bermudaphp/cast",
"description": "Lightweight and powerful type conversion library for PHP applications",
"type": "library",
"license": "MIT",
"keywords": [
"cast",
"type conversion",
"php84"
],
"require": {
"php": ">=8.4",
"nesbot/carbon": "^2.0",
"bermudaphp/config": "^1.4",
"bermudaphp/arrayable": "^1.1",
"bermudaphp/byte": "^2.0",
"cocur/slugify": "^4.6.0"
},
"suggest": {
"bermudaphp/cast-ip": "Provides casters for IP address handling",
"bermudaphp/cast-phone": "Provides casters for phone number handling and validation"
},
"autoload": {
"psr-4": {
"Bermuda\\Caster\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bermuda\\Caster\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^11.5"
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}