forked from SmarterVision/laravel-langman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.31 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
42
43
44
45
{
"name": "blackends/laravel-langman",
"description": "Manage language files with ease. Forked to support laravel 7",
"keywords": ["laravel", "localization", "multilingual"],
"homepage": "https://github.com/Zubair-Iftikhar/laravel-langman",
"license": "MIT",
"authors": [
{
"name": "BlackEnds",
"email": "[email protected]"
},
{
"name": "Zubair Iftikhar",
"email": "[email protected]",
"homepage": "https://blackends.com"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^5.1 || ^6.0 || ^7.0 || ^8.0 || ^9.0 ",
"illuminate/console": "^5.1 || ^6.0 || ^7.0 || ^8.0 || ^9.0 ",
"illuminate/filesystem": "^5.1 || ^6.0 || ^7.0 || ^8.0 || ^9.0 "
},
"require-dev": {
"phpunit/phpunit" : "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"orchestra/testbench": "~3.0",
"orchestra/database": "~3.0",
"mockery/mockery": "^0.9.4 || ^1.0"
},
"autoload": {
"psr-4": {
"Themsaid\\Langman\\": "src"
},
"classmap": [
"tests"
]
},
"extra": {
"laravel": {
"providers": [
"Themsaid\\Langman\\LangmanServiceProvider"
]
}
}
}