All Projects → mongodb → Mongo Php Library

mongodb / Mongo Php Library

Licence: apache-2.0
MongoDB PHP library

Projects that are alternatives of or similar to Mongo Php Library

Qmgo
Qmgo - The Go driver for MongoDB. It‘s based on official mongo-go-driver but easier to use like Mgo.
Stars: ✭ 444 (-68.08%)
Mutual labels:  mongodb-driver, mongodb
Mongo Cxx Driver
C++ Driver for MongoDB
Stars: ✭ 792 (-43.06%)
Mutual labels:  mongodb-driver, mongodb
Mongokitten
Native MongoDB driver for Swift, written in Swift
Stars: ✭ 605 (-56.51%)
Mutual labels:  mongodb-driver, mongodb
Mongodb.entities
A data access library for MongoDB with an elegant api, LINQ support and built-in entity relationship management
Stars: ✭ 204 (-85.33%)
Mutual labels:  mongodb-driver, mongodb
Avocado
Strongly-typed MongoDB driver for Rust
Stars: ✭ 70 (-94.97%)
Mutual labels:  mongodb-driver, mongodb
Mongodb Plugin
MongoDB Plugin for Java
Stars: ✭ 236 (-83.03%)
Mutual labels:  mongodb-driver, mongodb
Mongo Php Driver
MongoDB PHP driver
Stars: ✭ 737 (-47.02%)
Mutual labels:  mongodb-driver, mongodb
Mongo Rust Driver
The official MongoDB Rust Driver
Stars: ✭ 633 (-54.49%)
Mutual labels:  mongodb-driver, mongodb
Egg Mongo Native
MongoDB egg.js plugin using native driver.
Stars: ✭ 69 (-95.04%)
Mutual labels:  mongodb-driver, mongodb
Mongoc.jl
MongoDB driver for the Julia Language
Stars: ✭ 46 (-96.69%)
Mutual labels:  mongodb-driver, mongodb
Mongo Perl Driver
Perl driver for the MongoDB
Stars: ✭ 203 (-85.41%)
Mutual labels:  mongodb-driver, mongodb
Erlmongo
Erlang driver for MongoDB with gridfs that works with maps and proplists
Stars: ✭ 90 (-93.53%)
Mutual labels:  mongodb-driver, mongodb
Mongojs
Node.js module that implements the offical mongo api
Stars: ✭ 1,782 (+28.11%)
Mutual labels:  mongodb-driver, mongodb
Mongo Swift Driver
The official MongoDB driver for Swift
Stars: ✭ 242 (-82.6%)
Mutual labels:  mongodb-driver, mongodb
Phalcon Mongodb Odm
MongoDB ODM for Phalcon framework for new mongodb php extension with query builder and rich functionality
Stars: ✭ 42 (-96.98%)
Mutual labels:  mongodb-driver, mongodb
Lua Mongo
MongoDB Driver for Lua
Stars: ✭ 81 (-94.18%)
Mutual labels:  mongodb-driver, mongodb
Mongo.migration
On-the-fly migrations with MongoDB C# Driver
Stars: ✭ 99 (-92.88%)
Mutual labels:  mongodb-driver, mongodb
Mern Mediastream
A MERN stack based media streaming application [Full-Stack React Projects]
Stars: ✭ 98 (-92.95%)
Mutual labels:  mongodb
Mongodb Memory Server
Spinning up mongod in memory for fast tests. If you run tests in parallel this lib helps to spin up dedicated mongodb servers for every test file in MacOS, *nix, Windows or CI environments (in most cases with zero-config).
Stars: ✭ 1,376 (-1.08%)
Mutual labels:  mongodb
Stratify
Rails + MongoDB app for building a consolidated timeline of your data from disparate sources (e.g., Twitter, GitHub, Foursquare, etc.)
Stars: ✭ 97 (-93.03%)
Mutual labels:  mongodb

MongoDB PHP Library

Tests Coding Standards

This library provides a high-level abstraction around the lower-level PHP driver (mongodb extension).

While the extension provides a limited API for executing commands, queries, and write operations, this library implements an API similar to that of the legacy PHP driver. It contains abstractions for client, database, and collection objects, and provides methods for CRUD operations and common commands (e.g. index and collection management).

If you are developing an application with MongoDB, you should consider using this library, or another high-level abstraction, instead of the extension alone.

Additional information about the architecture of this library and the mongodb extension may be found in Architecture Overview.

Documentation

Installation

The preferred method of installing this library is with Composer by running the following from your project root:

$ composer require mongodb/mongodb

Additional installation instructions may be found in the library documentation.

Since this library is a high-level abstraction for the driver, it also requires that the mongodb extension be installed:

$ pecl install mongodb
$ echo "extension=mongodb.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`

Additional installation instructions for the extension may be found in its PHP.net documentation.

Reporting Issues

Issues pertaining to the library should be reported in the PHPLIB project in MongoDB's JIRA. Extension-related issues should be reported in the PHPC project.

For general questions and support requests, please use one of MongoDB's Technical Support channels.

Security Vulnerabilities

If you've identified a security vulnerability in a driver or any other MongoDB project, please report it according to the instructions in Create a Vulnerability Report.

Development

Development is tracked in the PHPLIB project in MongoDB's JIRA. Documentation for contributing to this project may be found in CONTRIBUTING.md.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].