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
|
{
"name": "fguillot/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.3",
"ext-gd" : "*",
"ext-mbstring" : "*",
"ext-hash" : "*",
"ext-openssl" : "*",
"ext-json" : "*",
"ext-ctype" : "*",
"ext-filter" : "*",
"ext-session" : "*",
"christian-riesen/otp" : "1.4",
"eluceo/ical": "0.8.0",
"erusev/parsedown" : "1.6.0",
"fguillot/json-rpc" : "1.1.0",
"fguillot/picodb" : "1.0.10",
"fguillot/simpleLogger" : "1.0.1",
"fguillot/simple-validator" : "1.0.0",
"paragonie/random_compat": "@stable",
"pimple/pimple" : "~3.0",
"ramsey/array_column": "@stable",
"swiftmailer/swiftmailer" : "~5.4",
"symfony/console" : "~2.7",
"symfony/event-dispatcher" : "~2.7",
"gregwar/captcha": "1.*"
},
"autoload" : {
"classmap" : ["app/"],
"psr-4" : {
"Kanboard\\" : "app/"
},
"files" : [
"app/functions.php",
"app/Library/password.php"
]
},
"require-dev" : {
"symfony/stopwatch" : "~2.6"
}
}
|