-
Notifications
You must be signed in to change notification settings - Fork 50
/
composer.json
129 lines (129 loc) · 4.42 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "it-novum/open-itcockpit",
"description": "openITCOCKPIT is an open source monitoring framework based on nagios",
"homepage": "https://openitcockpit.io/",
"license": "Dual licensed GPLv3 and proprietary",
"authors": [
{
"name": "it-novum GmbH",
"role": "Developer"
}
],
"type": "project",
"support": {
"issues": "https://github.com/it-novum/openITCOCKPIT/issues",
"source": "https://github.com/it-novum/openITCOCKPIT",
"irc": "irc://irc.libera.chat/openitcockpit"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/it-novum/acl"
}
],
"require": {
"php": ">=7.2",
"ext-calendar": "*",
"ext-curl": "*",
"ext-gd": "*",
"ext-gearman": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-pcntl": "*",
"ext-posix": "*",
"ext-redis": "*",
"ext-simplexml": "*",
"ext-soap": "*",
"ext-sockets": "*",
"ext-sysvsem": "*",
"ext-xmlrpc": "*",
"ext-zip": "*",
"azuyalabs/yasumi": "^2.2",
"cakephp/authentication": "^2.0",
"cakephp/authorization": "^2.0",
"cakephp/cakephp": "^4.0",
"cakephp/migrations": "@stable",
"cakephp/plugin-installer": "^1.0",
"cboden/ratchet": "^0.4.1",
"chillerlan/php-qrcode": "^3.4.1 || ^4.3.3",
"ddeboer/imap": "^1.9",
"erusev/parsedown": "^1.7",
"erusev/parsedown-extra": "^0.8",
"freedsx/ldap": "^0.5.0",
"friendsofcake/cakephp-csvview": "^4.0",
"guiguiboy/php-cli-progress-bar": "^0.0.4",
"guzzlehttp/guzzle": "^7.4",
"itnovum/acl": "^0.7.4",
"jbbcode/jbbcode": "^1.4",
"jdorn/sql-formatter": "^1.2",
"lasserafn/php-initial-avatar-generator": "^4.2",
"league/oauth2-client": "^2.5",
"matthiasmullie/minify": "^1.3",
"microsoft/microsoft-graph": "^1.92",
"mobiledetect/mobiledetectlib": "2.*",
"promphp/prometheus_client_php": "^2.7",
"spatie/emoji": "^2.1",
"symfony/filesystem": "^5.4",
"symfony/finder": "^5.4",
"symfony/process": "^5.4",
"symfony/yaml": "^5.0",
"tecnickcom/tcpdf": "^6.4",
"twig/twig": "^3.0"
},
"require-dev": {
"cakephp/bake": "^2.0",
"cakephp/cakephp-codesniffer": "^4.0",
"cakephp/debug_kit": "~4.0",
"cakephp/migrations": "@stable",
"josegonzalez/dotenv": "3.*",
"phpunit/phpunit": "^8.0",
"psy/psysh": "@stable"
},
"suggest": {
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.",
"dereuromark/cakephp-ide-helper": "After baking your code, this keeps your annotations in sync with the code evolving from there on for maximum IDE and PHPStan/Psalm compatibility."
},
"autoload": {
"psr-4": {
"App\\": "src/",
"itnovum\\openITCOCKPIT\\": "src/itnovum/openITCOCKPIT/",
"Statusengine\\": "src/Statusengine/"
},
"files": [
"src/3rd/imageSmoothArc.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
},
"files": [
"src/3rd/imageSmoothArc.php"
]
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"stan": "phpstan analyse src/",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan-shim:^0.11 && mv composer.backup composer.json",
"test": "phpunit --colors=always"
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"github-protocols": [
"https"
],
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true
}
}
}