Skip to content

Commit 57e46c4

Browse files
author
Jan Steemann
committed
updated URLs
1 parent 0a0c513 commit 57e46c4

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ v1.3.0 (2013-05-13)
7070

7171
=======================
7272

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)
7474

7575
* [Breaking change] Removed getServerStatus() in favor of getServerStatistics() This breaks intentionally,
7676
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)
8282
* PSR-2 reformatting
8383
* Made some things more IDE Friendly (in regards to code-completion) and fixed some errors in the PHPDocs
8484

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)
8686

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)
8888

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)
9090

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)
9292

9393
* Minor fixes in tests
9494

@@ -171,15 +171,15 @@ v1.2.0-BETA2 (2013-02-23)
171171

172172
* Bumped travis ArangoDB version to 1.2.beta3
173173

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.
175175

176176
* Modified GraphHandler->saveVertex() and GraphHandler->saveEdge() so that an array can be passed instead of an object.
177177

178178
* Modified EdgeHandler->save() so that an array can be passed instead of an edge object.
179179

180180
* Modified DocumentHandler->save() so that an array can be passed instead of a document object.
181181

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)
183183

184184
* Corrected HTTP response codes assertions in some cases, after ArangoDB is now correctly returning 404 in those cases
185185

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Please follow these guidelines if you want to contribute to ArangoDB-PHP:
1515
* 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:
1616
* the "devel" branch is normally used for new features
1717
* 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)
1919
* 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)
2020
* If you intend to do documentation changes, you also must install PHPDocumentor in the most recent version (Currently version 2).
2121

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
# ArangoDB-PHP - A PHP client for ArangoDB
44

5-
[![Build Status](https://travis-ci.org/triAGENS/ArangoDB-PHP.png?branch=master)](https://travis-ci.org/triAGENS/ArangoDB-PHP)
5+
[![Build Status](https://travis-ci.org/arangodb/ArangoDB-PHP.png?branch=master)](https://travis-ci.org/arangodb/ArangoDB-PHP)
66
**Branch: Master (v2.3)**
77

8-
[![Build Status](https://travis-ci.org/triAGENS/ArangoDB-PHP.png?branch=devel)](https://travis-ci.org/triAGENS/ArangoDB-PHP)
8+
[![Build Status](https://travis-ci.org/arangodb/ArangoDB-PHP.png?branch=devel)](https://travis-ci.org/arangodb/ArangoDB-PHP)
99
**Branch: devel**
1010

1111

@@ -35,9 +35,9 @@
3535

3636
<br>
3737

38-
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.
3939

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)**
4141

4242
<br>
4343
<a name="description"/a>
@@ -64,7 +64,7 @@ The client library provides document and collection classes you can use to work
6464
<a name="requirements"/a>
6565
# Requirements
6666

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))
6868

6969
* PHP version 5.3 or higher (Travis-tested with 5.4, 5.5, 5.6 and hhvm)
7070

@@ -165,7 +165,7 @@ require 'vendor/.composer/autoload.php';
165165

166166
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:
167167

168-
git clone "https://github.com/triAGENS/ArangoDB-PHP.git"
168+
git clone "https://github.com/arangodb/ArangoDB-PHP.git"
169169

170170

171171
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.
@@ -607,4 +607,4 @@ catch (ArangoServerException $e) {
607607

608608
* [Follow us on Twitter @arangodbphp to receive updates on the php driver](https://twitter.com/arangodbphp)
609609

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

Comments
 (0)