From a652aa90d70938f1d3e2e5f4f9a017dbc349d129 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 27 Sep 2016 07:48:33 +0200 Subject: php-mongodb: 1.0.3 --- composer.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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/" } + } +} -- cgit