-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
38 lines (38 loc) · 1.25 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
{
"name": "php-riak/riak-client",
"description": "PHP Riak Client for PHP 5.4",
"homepage": "http://github.com/php-riak/riak-client",
"keywords": ["riak", "client", "driver", "database", "nosql"],
"license": "MIT",
"authors": [
{
"name": "Fabio B. Silva",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": { "Riak": "src/" }
},
"require": {
"php": ">=5.4.0",
"php-riak/riak-client-pb": "~1",
"doctrine/annotations": "~1",
"guzzlehttp/guzzle": "^5.3.1"
},
"require-dev": {
"phpunit/phpunit": "~4",
"instaclick/coding-standard": "~1.1",
"squizlabs/php_codesniffer": "~1.5",
"satooshi/php-coveralls": "~0.6",
"php-mock/php-mock-phpunit": "^0.2",
"instaclick/object-calisthenics-sniffs": "dev-master",
"instaclick/symfony2-coding-standard": "dev-remaster"
},
"autoload-dev": {
"psr-0": {
"RiakClientFixture\\": "tests",
"RiakClientTest\\": "tests",
"RiakClientFunctionalTest\\": "tests"
}
}
}