-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 898 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
{
"name": "jroedel/laminas-jtranslate",
"type": "library",
"description": "Laminas module to provide a translation GUI",
"keywords": ["laminas","translation", "gui"],
"homepage": "https://github.com/jroedel/laminas-jtranslate",
"license": "MIT",
"authors": [
{
"name": "jroedel",
"homepage": "https://github.com/jroedel",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/jroedel/laminas-jtranslate/issues"
},
"minimum-stability" : "stable",
"require": {
"php": "^8.0",
"laminas/laminas-code": "^3.0.2 || ^2.5.0",
"laminas/laminas-i18n": "^2.5.0",
"cakephp/utility": "^3.2.0",
"mledoze/countries": "^1.8.0"
},
"autoload": {
"psr-4": {
"JTranslate\\": "module/JTranslate/src/"
}
}
}