Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kosatyi/mango-php
PHP MongoDB models implementation
https://github.com/kosatyi/mango-php
mongodb mongodb-orm
Last synced: about 2 months ago
JSON representation
PHP MongoDB models implementation
- Host: GitHub
- URL: https://github.com/kosatyi/mango-php
- Owner: kosatyi
- License: mit
- Created: 2017-01-15T13:27:51.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-09-04T12:57:09.000Z (over 3 years ago)
- Last Synced: 2024-04-15T23:45:36.779Z (8 months ago)
- Topics: mongodb, mongodb-orm
- Language: PHP
- Homepage: https://kosatyi.com/mango-php/
- Size: 113 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mango-PHP
MongoDB Models implementation
## Installation
### System Requirements
PHP 5.4 and later.
### Dependencies
Mango-PHP require the following extension in order to work properly:
- [`mongodb`](https://secure.php.net/manual/en/book.mongodb.php)
### Install with Composer
If you’re using [Composer](https://getcomposer.org/), you can run the following command:
```cmd
composer require kosatyi/mango-php
```Or add dependency manually in `composer.json`
```json
{
"require": {
"kosatyi/mango-php":"^0.0.1"
}
}```