forked from userfrosting/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.02 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
{
"name": "userfrosting/i18n",
"type": "library",
"description": "Internationalization module for UserFrosting",
"keywords": ["userfrosting", "i18n", "translation", "localization"],
"homepage": "https://github.com/userfrosting/i18n",
"license" : "MIT",
"authors" : [
{
"name": "Louis Charette",
"homepage": "https://bbqsoftwares.com"
},
{
"name": "Alexander Weissman",
"homepage": "https://alexanderweissman.com"
}
],
"require": {
"php": ">=7.1",
"twig/twig": "^2.11",
"userfrosting/support": "~4.5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^7.5 | ^8.5",
"victorjonsson/markdowndocs": "^1.3"
},
"autoload": {
"psr-4": {
"UserFrosting\\I18n\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\I18n\\Tests\\": "tests"
}
}
}