-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.2 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
{
"name": "ricardokovalski/money-formatter",
"description": "Biblioteca para formatar valores monetários.",
"type": "library",
"authors": [
{
"name": "Ricardo Kovalski",
"email": "[email protected]",
"role": "Maintainer"
}
],
"license": "MIT",
"keywords": ["currency", "currencies", "decimal", "decimal-numbers", "formatter", "intl", "money", "php"],
"require": {
"php": ">=5.6",
"ext-json": "*",
"ext-intl": "*",
"moneyphp/money": "^3.3",
"ricardokovalski/locale": "v1.0.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"friendsofphp/php-cs-fixer": "^2.16"
},
"scripts": {
"check-style": "php-cs-fixer fix --diff --verbose --dry-run .",
"fix-style": "php-cs-fixer fix ."
},
"autoload": {
"psr-4": {
"RicardoKovalski\\MoneyFormatter\\": "src/"
},
"files": [
"src/Support/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"RicardoKovalski\\MoneyFormatter\\Tests\\": "tests/"
}
},
"minimum-stability": "alpha",
"prefer-stable": true
}