summaryrefslogtreecommitdiff
path: root/composer.json
blob: 6a7747191ca61d8499cd0ae4110e49f9cf55335b (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
    "name": "kanboard/kanboard",
    "type": "project",
    "description": "Kanban project management software",
    "license": "MIT",
    "authors": [
        {
            "name": "Frédéric Guillot"
        }
    ],
    "config": {
        "preferred-install": "dist",
        "optimize-autoloader": true,
        "discard-changes": true
    },
    "require" : {
        "php" : ">=5.6.0",
        "ext-simplexml" : "*",
        "ext-dom" : "*",
        "ext-xml" : "*",
        "ext-gd" : "*",
        "ext-mbstring" : "*",
        "ext-hash" : "*",
        "ext-openssl" : "*",
        "ext-json" : "*",
        "ext-ctype" : "*",
        "ext-filter" : "*",
        "ext-session" : "*",
        "christian-riesen/otp" : "1.4.3",
        "eluceo/ical": "0.10.1",
        "erusev/parsedown" : "1.7.1",
        "paragonie/random_compat": "2.0.11",
        "pimple/pimple" : "3.2.2",
        "psr/log": "~1.0",
        "swiftmailer/swiftmailer" : "5.4.8",
        "symfony/console" : "3.4.2",
        "symfony/event-dispatcher" : "3.4.2",
        "gregwar/captcha": "1.1.4"
    },
    "autoload" : {
        "classmap" : ["app/"],
        "psr-4" : {
            "Kanboard\\" : "app/"
        },
        "psr-0" : {
            "": "libs/"
        },
        "files" : [
            "app/functions.php"
        ]
    },
    "require-dev" : {
        "phpunit/php-code-coverage": "4.0.8",
        "phpunit/php-token-stream": "1.4.12",
        "doctrine/instantiator": "1.0.5",
        "phpdocumentor/reflection-docblock": "3.3.2",
        "symfony/debug": "3.4.2",
        "symfony/yaml": "3.4.2",
        "symfony/finder": "3.4.8",
        "symfony/stopwatch" : "3.4.2",
        "myclabs/deep-copy": "1.7.0",
        "phpunit/phpunit" : "5.7.24",
        "phpunit/phpunit-selenium": "3.0.3"
    }
}