-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
38 lines (38 loc) · 862 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
{
"name": "luoxiaojun1992/laravel-tars",
"description": "Laravel Tars",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "author's name",
"email": "[email protected]"
}
],
"require": {
"illuminate/console": "~5",
"illuminate/support": "~5",
"illuminate/contracts": "~5",
"vlucas/phpdotenv": "~2|~3",
"phptars/tars-server": "~0.6",
"phptars/tars-deploy": "~0.1",
"phptars/tars2php": "~0.1",
"phptars/tars-log": "~0.1",
"laravelista/lumen-vendor-publish": "2.1.0",
"guzzlehttp/guzzle": "^6"
},
"require-dev": {
"phpunit/phpunit": "*",
"mockery/mockery": "*"
},
"autoload": {
"psr-4": {"Lxj\\Laravel\\Tars\\": "src/"}
},
"extra": {
"laravel": {
"providers": [
"Lxj\\Laravel\\Tars\\ServiceProvider"
]
}
}
}