forked from danielmewes/php-rql
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (45 loc) · 1.19 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": "mbagnall/php-rql",
"type": "library",
"description": "A PHP client driver for the RethinkDB query language (ReQL)",
"keywords": ["rethinkdb","driver","database","reql"],
"homepage": "http://danielmewes.github.io/php-rql/",
"license": "Apache-2.0",
"authors": [
{
"name": "Daniel Mewes",
"email": "[email protected]",
"homepage": "http://dmewes.com",
"role": "Developer"
},
{
"name": "Michael Bagnall",
"email": "[email protected]",
"homepage": "http://bagnall.io",
"role": "Maintainer"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"jakub-onderka/php-parallel-lint": "dev-master",
"squizlabs/php_codesniffer": "~2.5"
},
"autoload": {
"files": ["rdb/rdb.php"],
"psr-4": {
"r\\": "rdb/",
"r\\Tests\\": "tests/"
}
},
"scripts": {
"test": "tests/phpunit.sh"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"process-timeout": 300
}
}