summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 494b2cb0b7c48c92a989564948cce1025ff56142 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
    "name": "bartlett/umlwriter",
    "description": "Create UML class diagrams from your PHP source.",
    "keywords": ["UML", "Graphviz", "PlantUML"],
    "type": "library",
    "license": "BSD-3-Clause",
    "homepage": "http://php5.laurent-laville.org/umlwriter/",
    "support": {
        "source": "https://github.com/llaville/umlwriter",
        "issues": "https://github.com/llaville/umlwriter/issues"
    },
    "require": {
        "php": ">=5.4.0",
        "symfony/console": "~2.5",
        "sebastian/version": "~1.0"
    },
    "require-dev": {
        "bartlett/php-reflect": "~4.0",
        "andrewsville/php-token-reflection": "~1.4"
    },
    "suggest": {
        "bartlett/php-reflect": "Reverse-engine, default solution",
        "andrewsville/php-token-reflection": "Reverse-engine, alternative solution"
    },
    "authors": [
        {
            "name": "Laurent Laville",
            "email": "pear@laurent-laville.org",
            "homepage": "https://github.com/llaville",
            "role": "Lead"
        }
    ],
    "bin": [
        "bin/umlwriter"
    ],
    "autoload": {
        "psr-4": {
            "Bartlett\\": "src/Bartlett"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Bartlett\\Tests\\UmlWriter\\": "tests/"
        }
    }
}