-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.6 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.6 KB
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
{
"name": "rocketman/zookeeper",
"type": "project",
"description": "Zookeeper Online music database and charting software",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Jim Mason",
"email": "jmason@ibinx.com",
"homepage": "https://www.ibinx.com/"
}
],
"config": {
"preferred-install": "dist",
"discard-changes": "true"
},
"repositories": [
{
"_comment": "Using a fork of axy/sourcemap for PHP 8.4 support - see PR #10",
"type": "vcs",
"url": "https://github.com/RocketMan/sourcemap"
}
],
"autoload": {
"psr-4": {
"ZK\\API\\": "api/",
"ZK\\Controllers\\": "controllers/",
"ZK\\Engine\\": [ "engine/", "engine/impl/" ],
"ZK\\UI\\": "ui/"
},
"classmap": [
"custom/"
]
},
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"axy/sourcemap": "^1.0",
"cboden/ratchet": "^0.4.3",
"components/jquery": "^3.6.0",
"components/jqueryui": "^1.12.1",
"guzzlehttp/guzzle": "^7.4",
"league/commonmark": "^2.7",
"mottie/tablesorter": "^2.31.3",
"mrclay/jsmin-php": "^2.4.0",
"php-di/php-di": "^7.1",
"react/datagram": "^1.5",
"react/http": "^1.2",
"react/promise-timer": "^1.11",
"ratchet/pawl": "^0.4.1",
"rocketman/jquery-fxtime": "^1.0",
"rocketman/json-api-server": "^3.1",
"rocketman/pdf-label": "^1.6+rocketman.3",
"rocketman/spoa-php": "^0.9.4",
"twig/twig": "^3.5.1",
"vstelmakh/url-highlight": "^3.0"
},
"suggest": {
"ext-intl": "Allows transliteration of Cyrillic and Greek to Latin"
},
"require-dev": {
"phpstan/phpstan": "^2.1"
}
}