-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
71 lines (71 loc) · 1.69 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
{
"name": "jrmajor/pluralrules",
"description": "Identify plural categories according to CLDR",
"license": "MIT",
"keywords": [
"plural",
"plural rules",
"plural categories",
"i18n",
"internationalization",
"l10n",
"localization",
"locale",
"language",
"cldr"
],
"authors": [
{
"name": "Jeremiasz Major",
"email": "[email protected]"
}
],
"homepage": "https://github.com/jrmajor/pluralrules",
"require": {
"php": "8.3 - 8.4",
"ext-intl": "*"
},
"require-dev": {
"azjezz/psl": "^3.1",
"hoa/compiler": "~3.17",
"jrmajor/cs": "^0.6.1",
"nette/php-generator": "^4.1",
"nunomaduro/collision": "^8.5",
"php-standard-library/phpstan-extension": "^2.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.4",
"symfony/console": "^7.0",
"symfony/var-dumper": "^7.1",
"vaimo/composer-patches": "^5.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Major\\PluralRules\\": "src"
},
"files": [
"src/operands.php",
"src/operators.php"
]
},
"autoload-dev": {
"psr-4": {
"Major\\PluralRules\\Dev\\": "dev",
"Major\\PluralRules\\Tests\\": "tests"
},
"files": [
"dev/Helpers/helpers.php"
]
},
"config": {
"allow-plugins": {
"vaimo/composer-patches": true
}
},
"extra": {
"patcher": {
"search": "patches"
}
}
}