├── .gitignore ├── LICENSE ├── README.md ├── examples ├── _include.php ├── animal_tags.php └── animal_tags2.php ├── lib ├── MongoMapReduce.php ├── MongoMapReduceResponse.php └── XMongoCollection.php └── tests ├── MongoMapReduceResponseTest.php ├── MongoMapReduceTest.php ├── _include.php └── fixtures └── animal_tags.json /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | .buildpath 3 | .*.sw[a-z] 4 | *.un~ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infynyxx/MongoDB-MapReduce-PHP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infynyxx/MongoDB-MapReduce-PHP/HEAD/README.md -------------------------------------------------------------------------------- /examples/_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infynyxx/MongoDB-MapReduce-PHP/HEAD/examples/_include.php -------------------------------------------------------------------------------- /examples/animal_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infynyxx/MongoDB-MapReduce-PHP/HEAD/examples/animal_tags.php -------------------------------------------------------------------------------- /examples/animal_tags2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infynyxx/MongoDB-MapReduce-PHP/HEAD/examples/animal_tags2.php -------------------------------------------------------------------------------- /lib/MongoMapReduce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infynyxx/MongoDB-MapReduce-PHP/HEAD/lib/MongoMapReduce.php -------------------------------------------------------------------------------- /lib/MongoMapReduceResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infynyxx/MongoDB-MapReduce-PHP/HEAD/lib/MongoMapReduceResponse.php -------------------------------------------------------------------------------- /lib/XMongoCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infynyxx/MongoDB-MapReduce-PHP/HEAD/lib/XMongoCollection.php -------------------------------------------------------------------------------- /tests/MongoMapReduceResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infynyxx/MongoDB-MapReduce-PHP/HEAD/tests/MongoMapReduceResponseTest.php -------------------------------------------------------------------------------- /tests/MongoMapReduceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infynyxx/MongoDB-MapReduce-PHP/HEAD/tests/MongoMapReduceTest.php -------------------------------------------------------------------------------- /tests/_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infynyxx/MongoDB-MapReduce-PHP/HEAD/tests/_include.php -------------------------------------------------------------------------------- /tests/fixtures/animal_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infynyxx/MongoDB-MapReduce-PHP/HEAD/tests/fixtures/animal_tags.json --------------------------------------------------------------------------------