-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
69 lines (69 loc) · 1.65 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
{
"name": "jrmajor/fluent",
"description": "Fluent localization system for PHP",
"license": "MIT",
"keywords": [
"translator",
"translation",
"i18n",
"internationalization",
"l10n",
"localization",
"locale",
"language",
"ast",
"parser",
"plural",
"gender",
"ftl",
"mozilla"
],
"authors": [
{
"name": "Jeremiasz Major",
"email": "jrh.mjr@gmail.com"
}
],
"homepage": "https://github.com/jrmajor/fluent-php",
"require": {
"php": "8.3 - 8.4",
"ext-intl": "*",
"jrmajor/pluralrules": "^1.1"
},
"require-dev": {
"ext-json": "*",
"ext-simplexml": "*",
"azjezz/psl": "^3.1",
"jrmajor/cs": "^0.6.1",
"jrmajor/exporter": "^0.1.1",
"nunomaduro/collision": "^8.5",
"php-standard-library/phpstan-extension": "^1.1",
"phpbench/phpbench": "^1.3",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-phpunit": "^1.4",
"phpunit/phpunit": "^11.4",
"symfony/console": "^7.0",
"symfony/var-dumper": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Major\\Fluent\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Major\\Fluent\\Dev\\": "dev",
"Major\\Fluent\\Tests\\": "tests"
},
"files": [
"tests/Helpers/helpers.php"
]
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}