-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
39 lines (39 loc) · 956 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": "aitor24/laralang",
"description": "This package let you translate strings from any language to another in laravel 5.X",
"require": {
"php": ">=5.6.4",
"illuminate/support": "^5.4"
},
"type": "translations",
"license": "MIT",
"authors": [
{
"name": "Aitor Riba",
"email": "contact@aitorriba.com",
"homepage": "https://aitorriba.com/",
"role": "author"
},
{
"name": "Erik Campobadal",
"email": "soc@erik.cat",
"homepage": "https://erik.cat/",
"role": "developer"
}
],
"autoload": {
"psr-4": {
"Aitor24\\Laralang\\": "./src"
}
},
"extra": {
"laravel": {
"providers": [
"Aitor24\\Laralang\\LaralangServiceProvider"
],
"aliases": {
"Laralang": "Aitor24\\Laralang\\Facades\\Laralang"
}
}
},"minimum-stability": "dev"
}