-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
45 lines (45 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
{
"name": "digitalkaoz/versioneye-php",
"description": "PHP CLI for the VersionEye API",
"license": "MIT",
"minimum-stability": "beta",
"prefer-stable": true,
"authors": [
{
"name": "Robert Schönthal",
"email": "robert.schoenthal@gmail.com"
}
],
"require": {
"php": ">=5.5",
"symfony/console": "^2.4 | ^3",
"symfony/event-dispatcher": "^2.7 | ^3",
"phpdocumentor/reflection-docblock": "^2.0 | ^3",
"mattketmo/camel": "^1.1",
"rybakit/arguments-resolver": "^0.5",
"ramsey/array_column": "^1.1",
"php-http/httplug": "^1.0",
"php-http/client-common": "^1.0",
"php-http/message": "^1.0",
"php-http/plugins": "^1.0",
"php-http/discovery": "^1.0",
"php-http/client-implementation": "^1.0",
"puli/composer-plugin": "^1.0",
"php-http/multipart-stream-builder": "^1.0"
},
"require-dev": {
"bossa/phpspec2-expect": "^2.2.0 | ^1.0",
"php-http/guzzle6-adapter": "^1.0"
},
"autoload": {
"psr-4": {
"Rs\\VersionEye\\": "src"
}
},
"scripts": {
"test": "vendor/bin/phpspec run -fpretty -vv --ansi"
},
"bin": [
"bin/versioneye"
]
}