A simple and lightweight web-based administrative tool for MongoDB, built in PHP.
Manage databases, collections, and documents directly from your browser.
This project is licensed under the MIT License.
- Clean web UI to browse databases & collections
- Insert, update, and delete documents
- Export & import collections
- Uses the official MongoDB PHP driver
- Lightweight, simple, and fast
pecl install mongodb
# Enable the extension (adds to your loaded php.ini)
echo "extension=mongodb.so" | sudo tee -a "$(php --ini | grep 'Loaded Configuration' | sed -E 's|.*:\s*||')"
php -m | grep mongodb
git clone https://github.com/phpmongodb/phpmongodb.git
cd phpmongodb
composer install --no-dev --optimize-autoloader
php -S 0.0.0.0:8080 -t .
Open: http://localhost:8080