summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 836c8559aea9f3a87b17b22d1bfce550ea12f153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
    "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": "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",
        "ext-hash": "*",
        "ext-json": "*",
        "ext-mongodb": "^1.5.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^4.8.36 || ^6.4"
    },
    "autoload": {
        "psr-4": { "MongoDB\\": "src/" },
        "files": [ "src/functions.php" ]
    },
    "autoload-dev": {
        "psr-4": { "MongoDB\\Tests\\": "tests/" }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.3.x-dev"
        }
    }
}