-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 974 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
{
"name": "johnnestebann/langravel",
"description": "Multi Localization for Laravel. The Easy Way",
"keywords": [
"laravel",
"localization"
],
"license": "MIT",
"authors": [
{
"name": "John Astete",
"email": "[email protected]",
"homepage": "https://proycer.com.ar"
},
{
"name": "Mario Bašić",
"email": "[email protected]",
"homepage": "https://mariobasic.com"
}
],
"require": {
"php": ">=7.2",
"illuminate/support": "^5.7|^6.0|^7.0",
"illuminate/http": "^5.7|^6.0|^7.0",
"illuminate/routing": "^5.7|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Johnnestebann\\Langravel\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Johnnestebann\\Langravel\\ServiceProvider"
]
}
}
}