-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 995 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
40
41
42
43
44
45
{
"name": "crosa7/leaf-omniglot",
"description": "A Leaf module to add multi language capabilities to leaf applications",
"keywords": [
"translations",
"localization",
"multi-language",
"i18n",
"internationalization",
"leaf",
"php"
],
"type": "library",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"leafs/http": "^2.3",
"leafs/session": "^2.0",
"ext-json": "*"
},
"require-dev": {
"pestphp/pest": "^1.0",
"mockery/mockery": "^1.6"
},
"license": "MIT",
"autoload": {
"psr-4": {
"LeafOmniglot\\": "src/"
},
"files": [
"src/functions.php"
]
},
"authors": [
{
"name": "André Rosa",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}