-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
50 lines (50 loc) · 1.37 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
48
49
50
{
"name": "tbolier/php-rethink-ql",
"description": "A clean and solid RethinkDB driver for PHP.",
"type": "library",
"license": "Apache-2.0",
"homepage": "https://github.com/tbolier/php-rethink-ql/",
"authors": [
{
"name": "Timon Bolier",
"email": "timonb@gmail.com"
}
],
"keywords": [
"adapter",
"database",
"driver",
"rethinkdb",
"nosql",
"nosql-database",
"php",
"php-rethinkdb",
"php-rethinkdb-driver",
"rethinkdb-adapter",
"reql",
"rethinkdb-ql"
],
"minimum-stability": "stable",
"require": {
"php": "^7.1",
"psr/http-message": "^1.0",
"symfony/serializer": "^4.1",
"symfony/property-access": "^4.1"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0 || ^8.0"
},
"autoload": {
"psr-4": {
"TBolier\\RethinkQL\\": "src/",
"TBolier\\RethinkQL\\UnitTest\\": "test/unit/",
"TBolier\\RethinkQL\\IntegrationTest\\": "test/integration/"
}
},
"support": {
"docs": "https://github.com/tbolier/php-rethink-ql/tree/master/docs/",
"issues": "https://github.com/tbolier/php-rethink-ql/issues/",
"source": "https://github.com/tbolier/php-rethink-ql/"
}
}