composer.json 1.25 KB
Newer Older
Benjamin Eberlei's avatar
Benjamin Eberlei committed
1 2
{
    "name": "doctrine/dbal",
3
    "type": "library",
Benjamin Eberlei's avatar
Benjamin Eberlei committed
4 5 6
    "description": "Database Abstraction Layer",
    "keywords": ["dbal", "database", "persistence", "queryobject"],
    "homepage": "http://www.doctrine-project.org",
7
    "license": "MIT",
Benjamin Eberlei's avatar
Benjamin Eberlei committed
8 9 10 11 12 13 14
    "authors": [
        {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
        {"name": "Roman Borschel", "email": "roman@code-factory.org"},
        {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
        {"name": "Jonathan Wage", "email": "jonwage@gmail.com"}
    ],
    "require": {
15
        "php": ">=5.4",
16
        "doctrine/common": "~2.4"
17 18
    },
    "require-dev": {
19
        "phpunit/phpunit": "4.*",
20 21 22 23
        "symfony/console": "2.*"
    },
    "suggest": {
        "symfony/console": "For helpful console commands such as SQL execution and import of files."
Benjamin Eberlei's avatar
Benjamin Eberlei committed
24
    },
25
    "bin": ["bin/doctrine-dbal"],
Benjamin Eberlei's avatar
Benjamin Eberlei committed
26
    "autoload": {
27
        "psr-0": { "Doctrine\\DBAL\\": "lib/" }
28
    },
29 30 31
    "autoload-dev": {
        "psr-0": { "Doctrine\\Tests\\": "tests/" }
    },
32 33
    "extra": {
        "branch-alias": {
Steve Müller's avatar
Steve Müller committed
34
            "dev-master": "2.6.x-dev"
35
        }
Benjamin Eberlei's avatar
Benjamin Eberlei committed
36 37 38
    },
    "archive": {
        "exclude": ["!vendor", "tests", "*phpunit.xml", ".travis.yml", "build.xml", "build.properties", "composer.phar"]
Benjamin Eberlei's avatar
Benjamin Eberlei committed
39 40
    }
}