forked from datawrapper/datawrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
93 lines (93 loc) · 2.81 KB
/
composer.json
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "datawrapper",
"homepage": "https://github.com/datawrapper/datawrapper",
"type": "application",
"license": "MIT",
"require": {
"php": ">=5.3.0",
"ezyang/htmlpurifier": "4.*",
"propel/propel1": "1.6.*",
"slim/slim": "1.6.*",
"mustangostang/spyc": "0.5.*",
"twig/twig": "1.13.*",
"twig/extensions": "1.0.*",
"tubalmartin/cssmin": "2.4.8-p4",
"tedivm/jshrink": "~1.0",
"fightbulc/moment": "*"
},
"autoload": {
"classmap": [
"controller",
"lib"
],
"files": [
"lib/utils/add_editor_nav.php",
"lib/utils/add_header_vars.php",
"lib/utils/alphaID.php",
"lib/utils/array_merge_recursive_simple.php",
"lib/utils/chart_content.php",
"lib/utils/chart_publish.php",
"lib/utils/check_chart.php",
"lib/utils/check_email.php",
"lib/utils/check_server.php",
"lib/utils/copy_recursively.php",
"lib/utils/disable_cache.php",
"lib/utils/errors.php",
"lib/utils/i18n.php",
"lib/utils/pagination.php",
"lib/utils/parse_config.php",
"lib/utils/themes.php",
"lib/utils/twig-init.php",
"lib/utils/vksprintf.php"
],
"psr-0": {
"Slim": "vendor/slim/slim"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "tubalmartin/cssmin",
"version": "2.4.8",
"autoload": {
"classmap": ["cssmin.php"]
},
"dist": {
"type": "zip",
"url": "https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port/archive/v2.4.8-3.zip"
}
}
},
{
"type": "package",
"package": {
"name": "rgrove/jsmin-php",
"version": "1.0.0",
"autoload": {
"classmap": ["jsmin.php"]
},
"dist": {
"type": "zip",
"url": "https://github.com/rgrove/jsmin-php/archive/948d87c203010b0544ecc50cf31ad743d7e02a57.zip"
}
}
},
{
"type": "package",
"package": {
"name": "fightbulc/moment",
"version": "1.0.0",
"autoload": {
"psr-4": {
"Moment\\": "src/"
}
},
"dist": {
"type": "zip",
"url": "https://github.com/gka/moment.php/archive/patch-1.zip"
}
}
}
]
}