summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..259835f
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,23 @@
+{
+ "name": "mongodb/mongodb",
+ "description": "MongoDB driver library",
+ "keywords": ["database", "driver", "mongodb", "persistence"],
+ "homepage": "https://jira.mongodb.org/browse/PHPLIB",
+ "license": "Apache-2.0",
+ "authors": [
+ { "name": "Hannes Magnusson", "email": "bjori@mongodb.com" },
+ { "name": "Jeremy Mikola", "email": "jmikola@gmail.com" },
+ { "name": "Derick Rethans", "email": "github@derickrethans.nl" }
+ ],
+ "require": {
+ "php": ">=5.4",
+ "ext-mongodb": "^1.1.0"
+ },
+ "autoload": {
+ "psr-4": { "MongoDB\\": "src/" },
+ "files": [ "src/functions.php" ]
+ },
+ "autoload-dev": {
+ "psr-4": { "MongoDB\\Tests\\": "tests/" }
+ }
+}