You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ v1.3.0 (2013-05-13)
70
70
71
71
=======================
72
72
73
-
* Changed PhpDocs @package content to triagens\ArangoDb, closes issue (see https://github.com/triAGENS/ArangoDB-PHP/issues/123)
73
+
* Changed PhpDocs @package content to triagens\ArangoDb, closes issue (see https://github.com/arangodb/ArangoDB-PHP/issues/123)
74
74
75
75
*[Breaking change] Removed getServerStatus() in favor of getServerStatistics() This breaks intentionally,
76
76
because of the different data and data structure returned by the server in version 1.3
@@ -82,13 +82,13 @@ v1.3.0 (2013-05-13)
82
82
* PSR-2 reformatting
83
83
* Made some things more IDE Friendly (in regards to code-completion) and fixed some errors in the PHPDocs
84
84
85
-
* Initial AQL user functions implementation (see https://github.com/triAGENS/ArangoDB-PHP/pull/116)
85
+
* Initial AQL user functions implementation (see https://github.com/arangodb/ArangoDB-PHP/pull/116)
86
86
87
-
* Implemented support for ArangoDB's transactions (see https://github.com/triAGENS/ArangoDB-PHP/issues/71)
87
+
* Implemented support for ArangoDB's transactions (see https://github.com/arangodb/ArangoDB-PHP/issues/71)
88
88
89
-
* Re-implemented statistics according to new implementation in ArangoDB 1.3 (see https://github.com/triAGENS/ArangoDB-PHP/issues/113)
89
+
* Re-implemented statistics according to new implementation in ArangoDB 1.3 (see https://github.com/arangodb/ArangoDB-PHP/issues/113)
90
90
91
-
* Fixed precondition failed errors (see https://github.com/triAGENS/ArangoDB-PHP/issues/95)
91
+
* Fixed precondition failed errors (see https://github.com/arangodb/ArangoDB-PHP/issues/95)
92
92
93
93
* Minor fixes in tests
94
94
@@ -171,15 +171,15 @@ v1.2.0-BETA2 (2013-02-23)
171
171
172
172
* Bumped travis ArangoDB version to 1.2.beta3
173
173
174
-
* Modified CollectionHandler.php to also accept a name and options instead of only a collection object (see https://github.com/triAGENS/ArangoDB-PHP/issues/44). Options can also be set when using an object. Also did some code-style fixing.
174
+
* Modified CollectionHandler.php to also accept a name and options instead of only a collection object (see https://github.com/arangodb/ArangoDB-PHP/issues/44). Options can also be set when using an object. Also did some code-style fixing.
175
175
176
176
* Modified GraphHandler->saveVertex() and GraphHandler->saveEdge() so that an array can be passed instead of an object.
177
177
178
178
* Modified EdgeHandler->save() so that an array can be passed instead of an edge object.
179
179
180
180
* Modified DocumentHandler->save() so that an array can be passed instead of a document object.
181
181
182
-
* Implemented CollectionHandler->updateByExample() & CollectionHandler->replaceByExample(), (see https://github.com/triAGENS/ArangoDB-PHP/issues/40)
182
+
* Implemented CollectionHandler->updateByExample() & CollectionHandler->replaceByExample(), (see https://github.com/arangodb/ArangoDB-PHP/issues/40)
183
183
184
184
* Corrected HTTP response codes assertions in some cases, after ArangoDB is now correctly returning 404 in those cases
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Please follow these guidelines if you want to contribute to ArangoDB-PHP:
15
15
* Clone the fork to your development box and pull the latest changes from the ArangoDB-PHP repository. Please make sure to use the appropriate branch:
16
16
* the "devel" branch is normally used for new features
17
17
* bug fixes should be done in the "devel" first, before being applied to master or other branches
18
-
* Make sure the ArangoDB version is the correct one to use with your client version. The client version follows the ArangoDB version. [More info on this, here.](https://github.com/triAGENS/ArangoDB-PHP/wiki/Important-versioning-information-on-ArangoDB-PHP)
18
+
* Make sure the ArangoDB version is the correct one to use with your client version. The client version follows the ArangoDB version. [More info on this, here.](https://github.com/arangodb/ArangoDB-PHP/wiki/Important-versioning-information-on-ArangoDB-PHP)
19
19
* Make sure the unmodified clone works locally before making any code changes. You can do so by running the included test suite (phpunit --testsuite ArangoDB-PHP)
20
20
* If you intend to do documentation changes, you also must install PHPDocumentor in the most recent version (Currently version 2).
Please take a look [here](https://github.com/triAGENS/ArangoDB-PHP/wiki/Important-versioning-information-on-ArangoDB-PHP#arangodb-php-client-to-arangodb-server-interoperability-matrix) for the **ArangoDB-PHP Client** / **ArangoDB Server** interoperability matrix.
38
+
Please take a look [here](https://github.com/arangodb/ArangoDB-PHP/wiki/Important-versioning-information-on-ArangoDB-PHP#arangodb-php-client-to-arangodb-server-interoperability-matrix) for the **ArangoDB-PHP Client** / **ArangoDB Server** interoperability matrix.
39
39
40
-
**[Important versioning information on ArangoDB-PHP](https://github.com/triAGENS/ArangoDB-PHP/wiki/Important-versioning-information-on-ArangoDB-PHP)**
40
+
**[Important versioning information on ArangoDB-PHP](https://github.com/arangodb/ArangoDB-PHP/wiki/Important-versioning-information-on-ArangoDB-PHP)**
41
41
42
42
<br>
43
43
<a name="description"/a>
@@ -64,7 +64,7 @@ The client library provides document and collection classes you can use to work
64
64
<a name="requirements"/a>
65
65
# Requirements
66
66
67
-
* ArangoDB database server version 1.4 or higher (detailed info [here](https://github.com/triAGENS/ArangoDB-PHP/wiki/Important-versioning-information-on-ArangoDB-PHP#arangodb-php-client-to-arangodb-server-interoperability-matrix))
67
+
* ArangoDB database server version 1.4 or higher (detailed info [here](https://github.com/arangodb/ArangoDB-PHP/wiki/Important-versioning-information-on-ArangoDB-PHP#arangodb-php-client-to-arangodb-server-interoperability-matrix))
68
68
69
69
* PHP version 5.3 or higher (Travis-tested with 5.4, 5.5, 5.6 and hhvm)
When preferring this alternative, you need to have a git client installed. To clone the ArangoDB PHP client repository from github, execute the following command in your project directory:
This will create a subdirectory ArangoDB-PHP in your current directory. It contains all the files of the client library. It also includes a dedicated autoloader that you can use for autoloading the client libraries class files.
*[Follow us on Twitter @arangodbphp to receive updates on the php driver](https://twitter.com/arangodbphp)
609
609
610
-
* Check the ArangoDB PHP client on github.com regularly for new releases and updates: [https://github.com/triAGENS/ArangoDB-PHP](https://github.com/triAGENS/ArangoDB-PHP)
610
+
* Check the ArangoDB PHP client on github.com regularly for new releases and updates: [https://github.com/arangodb/ArangoDB-PHP](https://github.com/arangodb/ArangoDB-PHP)
0 commit comments