-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
53 lines (53 loc) · 1.27 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
{
"name": "rocketman/zookeeper",
"type": "project",
"description": "Zookeeper Online music database and charting software",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Jim Mason",
"email": "[email protected]",
"homepage": "https://www.ibinx.com/"
}
],
"config": {
"preferred-install": "dist",
"discard-changes": "true"
},
"autoload": {
"psr-4": {
"ZK\\API\\": "api/",
"ZK\\Controllers\\": "controllers/",
"ZK\\Engine\\": [ "engine/", "engine/impl/" ],
"ZK\\UI\\": "ui/"
},
"classmap": [
"custom/"
]
},
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"axy/sourcemap": "^0.1.5",
"cboden/ratchet": "^0.4.3",
"components/jquery": "^3.6.0",
"components/jqueryui": "^1.12.1",
"enm/json-api-server": "^3.1",
"erusev/parsedown": "^2.0.0-beta1",
"guzzlehttp/guzzle": "^7.4",
"mottie/tablesorter": "^2.31.3",
"mrclay/jsmin-php": "^2.4.0",
"react/datagram": "^1.5",
"react/http": "^1.2",
"ratchet/pawl": "^0.4.1",
"rocketman/jquery-fxtime": "^1.0",
"rocketman/pdf-label": "^1.6+rocketman.2",
"twig/twig": "^3.5.1",
"vstelmakh/url-highlight": "^3.0"
},
"suggest": {
"ext-intl": "Allows transliteration of Cyrillic and Greek to Latin"
}
}