1{
2    "name": "doctrine/annotations",
3    "type": "library",
4    "description": "Docblock Annotations Parser",
5    "keywords": ["annotations", "docblock", "parser"],
6    "homepage": "http://www.doctrine-project.org",
7    "license": "MIT",
8    "authors": [
9        {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
10        {"name": "Roman Borschel", "email": "roman@code-factory.org"},
11        {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
12        {"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
13        {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"}
14    ],
15    "require": {
16        "php": "^7.1",
17        "doctrine/lexer": "1.*"
18    },
19    "require-dev": {
20        "doctrine/cache": "1.*",
21        "phpunit/phpunit": "^6.4"
22    },
23    "autoload": {
24        "psr-4": { "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" }
25    },
26    "autoload-dev": {
27        "psr-4": { "Doctrine\\Tests\\Common\\Annotations\\": "tests/Doctrine/Tests/Common/Annotations" }
28    },
29    "extra": {
30        "branch-alias": {
31            "dev-master": "1.6.x-dev"
32        }
33    }
34}
35