Skip to content

Commit 2dc92e7

Browse files
committed
Update links after moving the repo from bjori to 10gen-labs
1 parent 222d57c commit 2dc92e7

File tree

5 files changed

+25
-24
lines changed

5 files changed

+25
-24
lines changed

README.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
phongo-crud
2-
===========
1+
phongo libraries
2+
================
33

4-
MongoDB CRUD interface for [PHongo](https://github.com/bjori/phongo).
4+
MongoDB CRUD interface for [PHongo](https://github.com/10gen-labs/mongo-php-driver-prototype).
55

66

77
This interface is meant for the general public to use with PHongo,
88
and will serve as the default reference interface when creating other bindings.
99

1010

1111
## Documentation
12-
- http://bjori.github.io/phongo/
12+
- http://10gen-labs.github.io/mongo-php-library-prototype/
1313

1414
# Installation
1515

16-
As PHongo CRUD is an abstraction layer for PHongo, it naturally requires [PHongo to be
17-
installed](http://bjori.github.io/phongo/#installation):
16+
As `PHongo libraries` is an abstraction layer for PHongo, it naturally requires
17+
[PHongo to be installed](http://10gen-labs.github.io/mongo-php-driver-prototype/#installation):
1818

19-
$ wget https://github.com/bjori/phongo/releases/download/0.1.2/phongo-0.1.2.tgz
19+
$ wget https://github.com/10gen-labs/mongo-php-driver-prototype/releases/download/0.1.2/phongo-0.1.2.tgz
2020
$ pecl install phongo-0.1.2.tgz
2121
$ echo "extension=phongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
2222

23-
The best way to then install PHongo CRUD is via [composer](https://getcomposer.org/)
23+
The best way to then install `PHongo libraries` is via [composer](https://getcomposer.org/)
2424
by adding the following to
2525
[composer.json](https://getcomposer.org/doc/01-basic-usage.md#composer-json-project-setup):
2626

2727
```json
2828
"repositories": [
2929
{
3030
"type": "vcs",
31-
"url": "https://github.com/bjori/phongo-crud"
31+
"url": "https://github.com/10gen-labs/mongo-php-libraries-prototype"
3232
}
3333
],
3434
"require": {
3535
"ext-phongo": ">=0.1.2",
36-
"bjori/phongo-crud": "dev-master"
36+
"10gen-labs/mongo-php-libraries-prototype": "dev-master"
3737
}
3838
```
3939

@@ -44,3 +44,4 @@ $ composer install
4444
```
4545

4646
## Reporting tickets
47+
TODO

apigen.neon

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ skipDocPrefix:
1818
charset:
1919
- UTF-8
2020

21-
main: MongoDB
22-
title: MongoDB CRUD
23-
baseUrl: http://bjori.github.io/phongo-crud
21+
main: phongo libraries
22+
title: phongo libraries
23+
baseUrl: http://10gen-labs.github.io/mongo-php-libraries-prototype
2424
googleCseId: null
2525
googleAnalytics: null
2626
templateTheme: bootstrap

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "bjori/phongo-crud",
3-
"description": "MongoDB CRUD interface for PHongo",
2+
"name": "10gen-labs/mongo-php-driver-libraries",
3+
"description": "phongo libraries for MongoDB",
44
"require": {
55
"ext-phongo": ">=0.1.2"
66
},

docs/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Welcome to PHongo CRUD
1+
# Welcome to phongo libraries!
22

3-
PHongo CRUD is an CRUD API ontop of [Phongo](https://github.com/bjori/phongo).
3+
phongo libraries is a CRUD API ontop of [Phongo](https://github.com/10gen-labs/mongo-php-driver-prototype).
44
Its purpose is to provide standard MongoDB API and follows the MongoDB CRUD API Specification[1]
55
that all [MongoDB](http://mongodb.com) supported drivers follow.
66

@@ -12,9 +12,9 @@ an collection, and delete documents from a collection.
1212
# Installation
1313

1414
As PHongo CRUD is an abstraction layer for PHongo, it naturally requires [PHongo to be
15-
installed](http://bjori.github.io/phongo/#installation):
15+
installed](http://10gen-labs.github.io/mongo-php-driver-prototype/#installation):
1616

17-
$ wget https://github.com/bjori/phongo/releases/download/0.1.2/phongo-0.1.2.tgz
17+
$ wget https://github.com/10gen-labs/mongo-php-driver-prototype/releases/download/0.1.2/phongo-0.1.2.tgz
1818
$ pecl install phongo-0.1.2.tgz
1919
$ echo "extension=phongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
2020

@@ -26,12 +26,12 @@ by adding the following to
2626
"repositories": [
2727
{
2828
"type": "vcs",
29-
"url": "https://github.com/bjori/phongo-crud"
29+
"url": "https://github.com/10gen-labs/mongo-php-library-prototype"
3030
}
3131
],
3232
"require": {
3333
"ext-phongo": ">=0.1.2",
34-
"bjori/phongo-crud": "dev-master"
34+
"10gen-labs/mongo-php-library-prototype": "dev-master"
3535
}
3636
```
3737

@@ -46,7 +46,7 @@ $ composer install
4646
## Generated API Docs
4747

4848
If you are just interested in looking at the API provided, checkout the apidoc generated
49-
documentation on: [http://bjori.github.io/phongo-crud/api/class-MongoDB.Collection.html](http://bjori.github.io/phongo-crud/api/class-MongoDB.Collection.html)
49+
documentation on: [http://10gen-labs.github.io/mongo-php-library-prototype/api/class-MongoDB.Collection.html](http://10gen-labs.github.io/mongo-php-library-prototype/api/class-MongoDB.Collection.html)
5050

5151

5252

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
site_name: "PHongo: CRUD - The Create Read Update and Delete interface for PHongo"
2-
repo_url: https://github.com/bjori/phongo-crud
1+
site_name: "PHongo libraries"
2+
repo_url: https://github.com/10gen-labs/mongo-php-library-prototype
33
theme: spacelab
44
pages:
55
- [index.md, Home]

0 commit comments

Comments
 (0)