-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 850 Bytes
/
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
{
"name": "cooperaj/better-twig-i18n",
"description": "Provides i18n functionality based on gettext language files.",
"minimum-stability": "stable",
"license": "mit",
"authors": [
{
"name": "Adam Cooper",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1.0",
"ext-gettext": "*",
"twig/twig": "^v3.0",
"symfony/finder": "^4.0 || ^5.0",
"gettext/gettext": "^5.5",
"gettext/translator": "^1.0",
"nikic/php-parser": "^4.9"
},
"require-dev": {
"mikey179/vfsstream": "^v1.6"
},
"autoload": {
"psr-4": {
"Acpr\\I18n\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AcprUnit\\I18n\\": "tests/unit/",
"AcprIntegration\\I18n\\": "tests/integration/"
}
},
"scripts": {
"test": "tools/phpunit.phar",
"static": "tools/psalm.phar"
}
}