-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.15 KB
/
Copy pathcomposer.json
File metadata and controls
41 lines (41 loc) · 1.15 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
{
"name": "nabeghe/light-localization",
"description": "A light weight, key-value & path-based PHP localization library that translations are loaded up when needed.",
"keywords": ["l10n", "l18n", "lang", "language", "localization", "localize", "translate", "translator"],
"type": "library",
"homepage": "https://github.com/nabeghe/light-localization",
"license": "MIT",
"authors": [
{
"name": "Hadi Akbarzadeh",
"email": "elsiomcoder@gmail.com",
"homepage": "https://elatel.ir",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"nabeghe/atlin": "^0.2.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0 || ^11.0"
},
"autoload": {
"psr-4": {
"Nabeghe\\LightLocalization\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nabeghe\\LightLocalization\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}