ndapio/mongo-helper

A MongoDB's CRUD wrapper for PHP. Neat and easy to use.

Installs: 17

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/ndapio/mongo-helper

v1.0.5 2025-10-27 14:51 UTC

This package is not auto-updated.

Last update: 2026-01-05 16:00:04 UTC


README

A MongoDB's CRUD wrapper for PHP. Neat and easy to use.

General idea:

  • MongoConnector.php connect to MongoDB and do CRUD queries.
  • MongoModel.php is a object class to be extended. The class will map MongoDB into object and do business logic.
  • MongoModelCollection.php is a collection class to be extended. The class is working as a collection (list/array/datasets) and save/load documents to MongoDB.

Guide

You can extend the MongoModel and MongoModelCollection class to use in your project.

(To be updated later...)