-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1.11 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
{
"name": "doefom/currency-fieldtype",
"description": "This Statamic addon provides a Currency fieldtype that lets you choose one of the most used currencies in the world and is especially suitable for fields like \"price\" or \"account_balance\" in any of your blueprints.",
"autoload": {
"psr-4": {
"Doefom\\CurrencyFieldtype\\": "src"
}
},
"autoload-dev": {
"classmap": [
"tests"
]
},
"extra": {
"statamic": {
"name": "Currency Fieldtype",
"description": "Currency Fieldtype addon",
"editions": ["free"]
},
"laravel": {
"providers": [
"Doefom\\CurrencyFieldtype\\ServiceProvider"
]
}
},
"require": {
"php": "^8.1",
"statamic/cms": "^v4.0|^v5.0",
"ext-intl": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"orchestra/testbench": "^8.5"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
},
"license": "proprietary"
}