forked from linkorb/etcd-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 980 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
40
41
42
43
{
"name": "linkorb/etcd-php",
"description": "Etcd client library for PHP",
"homepage": "http://www.github.com/linkorb/etcd-php",
"keywords": [
"php",
"etcd",
"api",
"distributed",
"configuration"
],
"type": "library",
"authors": [
{
"name": "Joost Faassen",
"email": "[email protected]",
"role": "Development"
}
],
"require": {
"php": ">=5.6",
"symfony/console": "^2.4 || ^3.0 || ^4.0",
"symfony/filesystem": "^2.4 || ^3.0 || ^4.0",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"LinkORB\\Component\\Etcd\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LinkORB\\Tests\\Component\\Etcd\\": "tests/"
}
},
"bin": [
"bin/etcd-php"
],
"license": "MIT"
}