Skip to content

Commit e10da86

Browse files
committed
updated URLs
1 parent 0254060 commit e10da86

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

README.md

Lines changed: 12 additions & 12 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/arangodb/ArangoDB-PHP.png?branch=master)](https://travis-ci.org/arangodb/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/arangodb/ArangoDB-PHP.png?branch=devel)](https://travis-ci.org/arangodb/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

@@ -36,9 +36,9 @@
3636

3737
<br>
3838

39-
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+
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.
4040

41-
**[Important versioning information on ArangoDB-PHP](https://github.com/arangodb/ArangoDB-PHP/wiki/Important-versioning-information-on-ArangoDB-PHP)**
41+
**[Important versioning information on ArangoDB-PHP](https://github.com/arangodb/arangodb-php/wiki/Important-versioning-information-on-ArangoDB-PHP)**
4242

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

68-
* 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+
* 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))
6969

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

@@ -166,14 +166,14 @@ require 'vendor/.composer/autoload.php';
166166

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

169-
git clone "https://github.com/arangodb/ArangoDB-PHP.git"
169+
git clone "https://github.com/arangodb/arangodb-php.git"
170170

171171

172-
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.
172+
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.
173173
To invoke this autoloader, add the following line to your PHP files that will use the library:
174174

175175
```php
176-
require 'ArangoDB-PHP/autoload.php';
176+
require 'arangodb-php/autoload.php';
177177
```
178178

179179

@@ -185,7 +185,7 @@ The ArangoDB PHP client's autoloader will only care about its own class files an
185185
If you do not wish to include autoload.php to load and setup the autoloader, you can invoke the autoloader directly:
186186

187187
```php
188-
require 'ArangoDB-PHP/lib/triagens/ArangoDb/autoloader.php';
188+
require 'arangodb-php/lib/triagens/ArangoDb/autoloader.php';
189189
\triagens\ArangoDb\Autoloader::init();
190190
```
191191

@@ -204,7 +204,7 @@ In order to use ArangoDB, you need to specify the connection options. We do so b
204204
// require dirname(__FILE__) . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . '.composer' . DIRECTORY_SEPARATOR . 'autoload.php';
205205

206206
// use the following line when using git
207-
require dirname(__FILE__) . DIRECTORY_SEPARATOR . 'ArangoDB-PHP' . DIRECTORY_SEPARATOR . 'autoload.php';
207+
require dirname(__FILE__) . DIRECTORY_SEPARATOR . 'arangodb-php' . DIRECTORY_SEPARATOR . 'autoload.php';
208208

209209
// set up some aliases for less typing later
210210
use triagens\ArangoDb\Collection as ArangoCollection;
@@ -503,7 +503,7 @@ Here's the full code that combines all the pieces outlined above:
503503
// require dirname(__FILE__) . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . '.composer' . DIRECTORY_SEPARATOR . 'autoload.php';
504504

505505
// use the following line when using git
506-
require dirname(__FILE__) . DIRECTORY_SEPARATOR . 'ArangoDB-PHP' . DIRECTORY_SEPARATOR . 'autoload.php';
506+
require dirname(__FILE__) . DIRECTORY_SEPARATOR . 'arangodb-php' . DIRECTORY_SEPARATOR . 'autoload.php';
507507

508508
// set up some aliases for less typing later
509509
use triagens\ArangoDb\Collection as ArangoCollection;
@@ -645,4 +645,4 @@ catch (ArangoServerException $e) {
645645

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

648-
* 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)
648+
* 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)

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
22
"name": "triagens/ArangoDb",
33
"type": "library",
4-
"description": "ArangodDb PHP client",
4+
"description": "ArangoDb PHP client",
55
"keywords": ["database","ArangoDb","Arango","document store","NoSQL"],
6-
"homepage": "https://github.com/triAGENS/ArangoDB-PHP",
6+
"homepage": "https://github.com/arangodb/arangodb-php",
77
"license": "Apache2",
88
"authors": [
99
{
1010
"name": "Jan Steemann",
11-
"homepage": "https://github.com/triAGENS/ArangoDB-PHP",
11+
"homepage": "https://github.com/arangodb/arangodb-php",
1212
"role": "Developer"
1313
},
1414
{
1515
"name": "Frank Mayer",
16-
"homepage": "https://github.com/triAGENS/ArangoDB-PHP",
16+
"homepage": "https://github.com/arangodb/arangodb-php",
1717
"role": "Developer"
1818
},
1919
{
2020
"name": "Contributors",
21-
"homepage": "https://github.com/triAGENS/ArangoDB-PHP/graphs/contributors"
21+
"homepage": "https://github.com/arangodb/arangodb-php/graphs/contributors"
2222
}
2323
],
2424
"require": {
@@ -32,7 +32,7 @@
3232
"repositories": [
3333
{
3434
"type": "vcs",
35-
"url": "https://github.com/triAGENS/ArangoDB-PHP"
35+
"url": "https://github.com/arangodb/arangodb-php"
3636
}
3737
]
3838
}

0 commit comments

Comments
 (0)