-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
95 lines (95 loc) · 2.99 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "bakame/laravel-intl-formatter",
"type": "library",
"description": "Global helpers for internalization in Laravel application",
"keywords": ["blade", "intl", "laravel", "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/laravel-intl-formatter",
"issues": "https://github.com/bakame-php/laravel-intl-formatter/issues",
"source": "https://github.com/bakame-php/laravel-intl-formatter"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/nyamsprod"
}
],
"autoload": {
"psr-4": {
"Bakame\\Intl\\Laravel\\": "src/"
},
"files": [
"src/helpers.php"
],
"exclude-from-classmap": [
"src/**Test.php"
]
},
"require": {
"php": "^7.4 || ^8.0",
"ext-intl": "*",
"ext-json": "*",
"bakame/intl-formatter": "~0.3.0",
"illuminate/config": "^8.0 || ^9.0",
"illuminate/support": "^8.0 || ^9.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"moneyphp/money": "^3.0 || ^4.0",
"nunomaduro/larastan": "^1.0.0 || ^2.1",
"orchestra/testbench": "^6.6.0 || ^7.5",
"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"
},
"suggest": {
"moneyphp/money": "To format currency based on the Money library"
},
"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-master": "1.x-dev"
},
"laravel": {
"providers": [
"Bakame\\Intl\\Laravel\\Provider"
],
"aliases": {
"IntlFormatter": "Bakame\\Intl\\Laravel\\IntlFormatter",
"IntlFactory": "Bakame\\Intl\\Laravel\\IntlFactory"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}