summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 90eee0f083e1e9251d79e105deb1194f6e479c8a (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
{
    "name": "phpdocumentor/reflection-common",
    "keywords": ["phpdoc", "phpDocumentor", "reflection", "static analysis", "FQSEN"],
    "homepage": "http://www.phpdoc.org",
    "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
    "license": "MIT",
    "authors": [
        {
            "name": "Jaap van Otterdijk",
            "email": "opensource@ijaap.nl"
        }
    ],
    "require": {
        "php": ">=5.5"
    },
    "autoload" : {
      "psr-4" : {
        "phpDocumentor\\Reflection\\": ["src"]
      }
    },
    "require-dev": {
        "phpunit/phpunit": "^4.6"
    },
    "extra": {
        "branch-alias": {
          "dev-master": "1.0.x-dev"
        }
    }
}