Skip to content

Commit 2740c72

Browse files
committed
Merge branch 'etienneroudeix-master' into dev
2 parents e04ae59 + 10a6ff5 commit 2740c72

File tree

306 files changed

+12823
-6773
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

306 files changed

+12823
-6773
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
composer.lock
2+
vendor/
3+
_builds/
4+
_cache/
5+
_projects/
6+
_steps/
7+
rethinkdb_data/
8+
wercker
9+

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ A PHP client driver for the RethinkDB query language (ReQL).
55

66
PHP-RQL is licensed under the terms of the Apache License 2.0 http://www.apache.org/licenses/LICENSE-2.0
77

8+
Continuous Integration
9+
-----------------------
10+
[![wercker status](https://app.wercker.com/status/931a7097f0ad9c272bd489f4dd16ab3e/m "wercker status")](https://app.wercker.com/project/bykey/931a7097f0ad9c272bd489f4dd16ab3e)
11+
12+
To run the tests at the command line, issue `composer install` and then `composer test` at the package root. This requires `composer` to be available in `$PATH`.
13+
814
Documentation
915
----------------
1016

@@ -62,4 +68,3 @@ Attributions
6268
* PHP-RQL uses pb4php http://code.google.com/p/pb4php/ by Nikolai Kordulla.
6369
* The API documentation is based on the official RethinkDB API documentation.
6470
* The API documentation is built using jTokenizer by Tim Whitlock (http://timwhitlock.info) and PHP Markdown by Michel Fortin (https://michelf.ca/).
65-

composer.json

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,23 @@
1616
"require": {
1717
"php": ">=5.3.0"
1818
},
19+
"require-dev": {
20+
"phpunit/phpunit": "~4.8",
21+
"jakub-onderka/php-parallel-lint": "dev-master"
22+
},
1923
"autoload": {
20-
"files": ["src/rdb/rdb.php"]
24+
"files": ["rdb/rdb.php"],
25+
"psr-4": {
26+
"r\\": "rdb/",
27+
"r\\Tests\\": "tests/"
28+
}
29+
},
30+
"scripts": {
31+
"test": "tests/phpunit.sh"
2132
},
22-
"include-path": ["src/"]
33+
"config": {
34+
"preferred-install": "dist",
35+
"optimize-autoloader": true,
36+
"process-timeout": 300
37+
}
2338
}

docs/index.html

Lines changed: 253 additions & 163 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)