-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.03 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.03 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
{
"name": "ipl/web",
"description": "Icinga PHP Library - Web Components",
"license": "MIT",
"type": "library",
"keywords": [
"html"
],
"homepage": "https://github.com/Icinga/ipl-web",
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-intl": "*",
"fortawesome/font-awesome": "^6",
"icinga/zf1": ">=2.0.0",
"ipl/html": ">=0.10.0",
"ipl/i18n": ">=1.0.0",
"ipl/orm": ">=0.8.0",
"ipl/scheduler": ">=0.3.0",
"ipl/stdlib": ">=0.15.0",
"psr/http-message": "^1.1",
"wikimedia/less.php": "^3.2.1"
},
"require-dev": {
"icinga/zf1": "dev-main",
"ipl/html": "dev-main",
"ipl/i18n": "dev-main",
"ipl/orm": "dev-main",
"ipl/scheduler": "dev-main",
"ipl/stdlib": "dev-main"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Icinga/zf1"
}
],
"autoload": {
"psr-4": {
"ipl\\Web\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ipl\\Tests\\Web\\": "tests"
}
},
"config": {
"sort-packages": true
}
}