forked from themsaid/laravel-langman
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.06 KB
/
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
{
"name": "themsaid/laravel-langman",
"description": "Manage language files with ease.",
"keywords": ["laravel", "localization", "multilingual"],
"homepage": "https://github.com/themsaid/laravel-langman",
"license": "MIT",
"authors": [
{
"name": "Mohamed Said",
"email": "[email protected]",
"homepage": "https://themsaid.github.io"
}
],
"require": {
"php": "^5.5.9 || ^7.0",
"illuminate/support": "~5.1",
"illuminate/console": "~5.1",
"illuminate/filesystem": "~5.1"
},
"require-dev": {
"phpunit/phpunit" : "^4.8 || ^5.0",
"orchestra/testbench": "~3.0",
"orchestra/database": "~3.0",
"mockery/mockery": "~0.9.4"
},
"autoload": {
"psr-4": {
"Themsaid\\Langman\\": "src"
},
"classmap": [
"tests"
]
},
"extra": {
"laravel": {
"providers": [
"Themsaid\\Langman\\LangmanServiceProvider"
]
}
}
}