-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.13 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
46
47
{
"name": "dannyweeks/mersey",
"description": "Establish ssh connections to quickly to any registered servers.",
"keywords": [
"ssh",
"cli"
],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Danny Weeks",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Weeks\\Mersey\\": "src/"
},
"files": [
"src/defines.php",
"src/helpers.php"
]
},
"autoload-dev": {
"classmap": ["tests/TestCase.php"],
"files": ["tests/helpers.php"]
},
"require": {
"symfony/console": "^2.7",
"justinrainbow/json-schema": "^1.5",
"illuminate/support": "5.2.21",
"illuminate/container": "5.2.21",
"illuminate/contracts": "5.2.21",
"geerlingguy/ping": "^1.0",
"vlucas/phpdotenv": "^2.2"
},
"require-dev": {
"symfony/var-dumper": "^2.7",
"phpunit/phpunit": "^4.8",
"mockery/mockery": "^0.9.4",
"ofbeaton/console-tester": "^1.1"
},
"bin": [
"mersey"
]
}