-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.41 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.41 KB
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
{
"name": "alexivanou/russian-text-bundle",
"description": "Symfony bundle providing Russian text functions: pluralization, number spelling, name inflection, noun/adjective declension, money spelling, time intervals, and more. Wraps wapmorgan/morphos into Symfony DI services and Twig extensions.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Aliaksandr Ivanou",
"email": "alexivanou@gmail.com"
}
],
"keywords": [
"russian",
"text",
"plural",
"num2str",
"morphology",
"symfony",
"twig",
"declension",
"inflection"
],
"require": {
"php": ">=7.2",
"wapmorgan/morphos": "^2.0",
"symfony/framework-bundle": "^4.2 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"symfony/twig-bundle": "^4.2 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"twig/twig": "^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.5"
},
"suggest": {
"symfony/flex": "Allows auto-configuration of the bundle"
},
"autoload": {
"psr-4": {
"AlexIvanou\\RussianTextBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-main": "2.0-dev"
},
"symfony": {
"require": "4.2.* || 5.0.* || 6.0.* || 7.0.* || 8.0.*",
"name": "russian_text"
}
}
}