-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "bakame/intl-formatter",
"type": "library",
"description": "Classes to help internalization in your PHP application",
"keywords": ["intl", "date", "number", "formatter", "internalization"],
"license": "MIT",
"authors": [
{
"name" : "Ignace Nyamagana Butera",
"email" : "[email protected]",
"homepage" : "https://github.com/nyamsprod/",
"role" : "Developer"
}
],
"support": {
"docs": "https://github.com/bakame-php/intl-formatter",
"issues": "https://github.com/bakame-php/intl-formatter/issues",
"source": "https://github.com/bakame-php/intl-formatter"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/nyamsprod"
}
],
"autoload": {
"psr-4": {
"Bakame\\Intl\\": "src/"
},
"exclude-from-classmap": [
"src/**Test.php",
"src/Test**"
]
},
"require": {
"ext-json": "*",
"php": "^8.0",
"symfony/intl": "^6.0",
"ext-intl": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.2",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"phpcs:fix" : "php-cs-fixer fix -vvv --using-cache=no --allow-risky=yes --ansi",
"phpcs": "php-cs-fixer fix -vvv --diff --dry-run --allow-risky=yes --ansi",
"phpstan": "phpstan analyse -c phpstan.neon --ansi --memory-limit 192M",
"phpunit": "XDEBUG_MODE=coverage phpunit --coverage-text",
"test": [
"@phpunit",
"@phpstan",
"@phpcs"
]
},
"scripts-descriptions": {
"phpcs": "Runs coding style test suite",
"phpstan": "Runs complete codebase static analysis",
"phpunit": "Runs unit and function tests",
"test": "Runs all tests"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"config": {
"sort-packages": true
}
}