-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.52 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.52 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "mlocati/concrete5-translation-library",
"description": "Library to handle concrete5 core and package translations",
"type": "library",
"keywords": [
"concrete5",
"translate",
"translation",
"packages",
"internationalization",
"i18n",
"localization",
"l10n"
],
"homepage": "https://github.com/concrete5-community/translation-library",
"license": "MIT",
"authors": [
{
"name": "Michele Locati",
"email": "mlocati@gmail.com",
"homepage": "https://github.com/mlocati",
"role": "developer"
}
],
"support": {
"email": "mlocati@gmail.com",
"issues": "https://github.com/concrete5-community/translation-library/issues",
"source": "https://github.com/concrete5-community/translation-library"
},
"require": {
"php": ">=7.2",
"gettext/gettext": "~3.5.9"
},
"autoload": {
"psr-4": {
"C5TL\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.5.39",
"twig/twig": "v3.11.3"
},
"suggest": {
"twig/twig": "To parse twig files for translations"
},
"autoload-dev": {
"psr-4": {
"C5TL\\Test\\": [
"test/helpers/",
"test/tests/"
]
}
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
},
"scripts": {
"test": "phpunit"
}
}