Commit 2dc92e74 authored by Hannes Magnusson's avatar Hannes Magnusson

Update links after moving the repo from bjori to 10gen-labs

parent 222d57cb
phongo-crud phongo libraries
=========== ================
MongoDB CRUD interface for [PHongo](https://github.com/bjori/phongo). MongoDB CRUD interface for [PHongo](https://github.com/10gen-labs/mongo-php-driver-prototype).
This interface is meant for the general public to use with PHongo, This interface is meant for the general public to use with PHongo,
...@@ -9,18 +9,18 @@ and will serve as the default reference interface when creating other bindings. ...@@ -9,18 +9,18 @@ and will serve as the default reference interface when creating other bindings.
## Documentation ## Documentation
- http://bjori.github.io/phongo/ - http://10gen-labs.github.io/mongo-php-library-prototype/
# Installation # Installation
As PHongo CRUD is an abstraction layer for PHongo, it naturally requires [PHongo to be As `PHongo libraries` is an abstraction layer for PHongo, it naturally requires
installed](http://bjori.github.io/phongo/#installation): [PHongo to be installed](http://10gen-labs.github.io/mongo-php-driver-prototype/#installation):
$ wget https://github.com/bjori/phongo/releases/download/0.1.2/phongo-0.1.2.tgz $ wget https://github.com/10gen-labs/mongo-php-driver-prototype/releases/download/0.1.2/phongo-0.1.2.tgz
$ pecl install phongo-0.1.2.tgz $ pecl install phongo-0.1.2.tgz
$ echo "extension=phongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"` $ echo "extension=phongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
The best way to then install PHongo CRUD is via [composer](https://getcomposer.org/) The best way to then install `PHongo libraries` is via [composer](https://getcomposer.org/)
by adding the following to by adding the following to
[composer.json](https://getcomposer.org/doc/01-basic-usage.md#composer-json-project-setup): [composer.json](https://getcomposer.org/doc/01-basic-usage.md#composer-json-project-setup):
...@@ -28,12 +28,12 @@ by adding the following to ...@@ -28,12 +28,12 @@ by adding the following to
"repositories": [ "repositories": [
{ {
"type": "vcs", "type": "vcs",
"url": "https://github.com/bjori/phongo-crud" "url": "https://github.com/10gen-labs/mongo-php-libraries-prototype"
} }
], ],
"require": { "require": {
"ext-phongo": ">=0.1.2", "ext-phongo": ">=0.1.2",
"bjori/phongo-crud": "dev-master" "10gen-labs/mongo-php-libraries-prototype": "dev-master"
} }
``` ```
...@@ -44,3 +44,4 @@ $ composer install ...@@ -44,3 +44,4 @@ $ composer install
``` ```
## Reporting tickets ## Reporting tickets
TODO
...@@ -18,9 +18,9 @@ skipDocPrefix: ...@@ -18,9 +18,9 @@ skipDocPrefix:
charset: charset:
- UTF-8 - UTF-8
main: MongoDB main: phongo libraries
title: MongoDB CRUD title: phongo libraries
baseUrl: http://bjori.github.io/phongo-crud baseUrl: http://10gen-labs.github.io/mongo-php-libraries-prototype
googleCseId: null googleCseId: null
googleAnalytics: null googleAnalytics: null
templateTheme: bootstrap templateTheme: bootstrap
......
{ {
"name": "bjori/phongo-crud", "name": "10gen-labs/mongo-php-driver-libraries",
"description": "MongoDB CRUD interface for PHongo", "description": "phongo libraries for MongoDB",
"require": { "require": {
"ext-phongo": ">=0.1.2" "ext-phongo": ">=0.1.2"
}, },
......
# Welcome to PHongo CRUD # Welcome to phongo libraries!
PHongo CRUD is an CRUD API ontop of [Phongo](https://github.com/bjori/phongo). phongo libraries is a CRUD API ontop of [Phongo](https://github.com/10gen-labs/mongo-php-driver-prototype).
Its purpose is to provide standard MongoDB API and follows the MongoDB CRUD API Specification[1] Its purpose is to provide standard MongoDB API and follows the MongoDB CRUD API Specification[1]
that all [MongoDB](http://mongodb.com) supported drivers follow. that all [MongoDB](http://mongodb.com) supported drivers follow.
...@@ -12,9 +12,9 @@ an collection, and delete documents from a collection. ...@@ -12,9 +12,9 @@ an collection, and delete documents from a collection.
# Installation # Installation
As PHongo CRUD is an abstraction layer for PHongo, it naturally requires [PHongo to be As PHongo CRUD is an abstraction layer for PHongo, it naturally requires [PHongo to be
installed](http://bjori.github.io/phongo/#installation): installed](http://10gen-labs.github.io/mongo-php-driver-prototype/#installation):
$ wget https://github.com/bjori/phongo/releases/download/0.1.2/phongo-0.1.2.tgz $ wget https://github.com/10gen-labs/mongo-php-driver-prototype/releases/download/0.1.2/phongo-0.1.2.tgz
$ pecl install phongo-0.1.2.tgz $ pecl install phongo-0.1.2.tgz
$ echo "extension=phongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"` $ echo "extension=phongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
...@@ -26,12 +26,12 @@ by adding the following to ...@@ -26,12 +26,12 @@ by adding the following to
"repositories": [ "repositories": [
{ {
"type": "vcs", "type": "vcs",
"url": "https://github.com/bjori/phongo-crud" "url": "https://github.com/10gen-labs/mongo-php-library-prototype"
} }
], ],
"require": { "require": {
"ext-phongo": ">=0.1.2", "ext-phongo": ">=0.1.2",
"bjori/phongo-crud": "dev-master" "10gen-labs/mongo-php-library-prototype": "dev-master"
} }
``` ```
...@@ -46,7 +46,7 @@ $ composer install ...@@ -46,7 +46,7 @@ $ composer install
## Generated API Docs ## Generated API Docs
If you are just interested in looking at the API provided, checkout the apidoc generated If you are just interested in looking at the API provided, checkout the apidoc generated
documentation on: [http://bjori.github.io/phongo-crud/api/class-MongoDB.Collection.html](http://bjori.github.io/phongo-crud/api/class-MongoDB.Collection.html) 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)
......
site_name: "PHongo: CRUD - The Create Read Update and Delete interface for PHongo" site_name: "PHongo libraries"
repo_url: https://github.com/bjori/phongo-crud repo_url: https://github.com/10gen-labs/mongo-php-library-prototype
theme: spacelab theme: spacelab
pages: pages:
- [index.md, Home] - [index.md, Home]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment