-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.23 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": "ejetar/laravel-decimal-locale",
"description": "\uD83D\uDD04 Cast your model attributes to the decimal format of another location.",
"homepage": "https://ejetar.com/projects/laravel-decimal-locale",
"type": "library",
"license": "MIT",
"version": "1.0.0",
"authors": [
{
"name": "Guilherme Almeida Girardi",
"email": "guilhermeagirardi@gmail.com",
"homepage": "https://guilhermegirardi.com",
"role": "Developer"
}
],
"keywords": [
"php",
"cast",
"locale",
"decimal",
"float",
"format",
"RFC 4646",
"CLDR",
"laravel"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"illuminate/support": "^7.6",
"illuminate/contracts": "^7.6",
"illuminate/http": "^7.6"
},
"require-dev": {
"orchestra/testbench": "^5.1"
},
"autoload": {
"psr-4": {
"Ejetar\\DecimalLocale\\": "src/app"
}
},
"extra": {
"laravel": {
"providers": [
"Ejetar\\DecimalLocale\\Providers\\AppServiceProvider"
]
}
}
}