diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/composer.json b/composer.json index c98ab12..41d0e32 100644 --- a/composer.json +++ b/composer.json @@ -5,18 +5,21 @@ "homepage": "https://jira.mongodb.org/browse/PHPLIB", "license": "Apache-2.0", "authors": [ + { "name": "Andreas Braun", "email": "andreas.braun@mongodb.com" }, { "name": "Jeremy Mikola", "email": "jmikola@gmail.com" }, - { "name": "Derick Rethans", "email": "github@derickrethans.nl" }, { "name": "Katherine Walker", "email": "katherine.walker@mongodb.com" } ], "require": { - "php": ">=5.5", + "php": "^5.6 || ^7.0", "ext-hash": "*", "ext-json": "*", - "ext-mongodb": "^1.5.0" + "ext-mongodb": "^1.6" }, "require-dev": { - "phpunit/phpunit": "^4.8.36 || ^6.4" + "phpunit/phpunit": "^5.7.27 || ^6.4 || ^8.3", + "sebastian/comparator": "^1.0 || ^2.0 || ^3.0", + "squizlabs/php_codesniffer": "^3.4", + "symfony/phpunit-bridge": "^4.4@dev" }, "autoload": { "psr-4": { "MongoDB\\": "src/" }, @@ -24,5 +27,10 @@ }, "autoload-dev": { "psr-4": { "MongoDB\\Tests\\": "tests/" } + }, + "extra": { + "branch-alias": { + "dev-master": "1.5.x-dev" + } } } |