-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
48 lines (48 loc) · 1.18 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
{
"name": "h4kuna/number-format",
"type": "library",
"description": "Object wrapper above number_format",
"homepage": "https://github.com/h4kuna/number-format",
"license": "MIT",
"authors": [
{
"name": "Milan Matějček",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"ext-intl": "*",
"h4kuna/data-type": "^v3.0.5"
},
"require-dev": {
"nette/utils": "^3.0 || ^4.0",
"nette/tester": "^2.4",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-strict-rules": "^1.4",
"phpstan/phpstan-deprecation-rules": "^1.1.3",
"tracy/tracy": "^2.9"
},
"autoload": {
"psr-4": {
"h4kuna\\Format\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"h4kuna\\Format\\Tests\\": "tests/src"
}
},
"config": {
"sort-packages": true
},
"suggest": {
"ext-intl": "If you want to use IntlDateFormatter or NumberFormatter."
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"tests": "vendor/bin/tester -s --colors 1 -s -C tests/src",
"coverage": "vendor/bin/tester -s --coverage coverage.html --coverage-src src/ --colors 1 -s -C tests/src"
}
}