forked from it-novum/openITCOCKPIT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
137 lines (137 loc) · 4.71 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
130
131
132
133
134
135
136
137
{
"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.freenode.org/openitcockpit"
},
"repositories": [
{
"type": "package",
"package": {
"name": "cakephp/acl",
"description": "Acl Plugin for CakePHP 4.x framework",
"version": "4.x-dev",
"type": "cakephp-plugin",
"autoload": {
"psr-4": {
"Acl\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Acl\\Test\\": "tests",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests"
}
},
"source": {
"url": "https://github.com/it-novum/acl.git",
"type": "git",
"reference": "4.x-dev"
}
}
}
],
"require": {
"php": ">=7.2",
"ext-calendar": "*",
"ext-gd": "*",
"ext-gearman": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-pcntl": "*",
"ext-posix": "*",
"ext-redis": "*",
"ext-simplexml": "*",
"ext-soap": "*",
"ext-sockets": "*",
"ext-zip": "*",
"alchemy/zippy": "^0.4.9",
"azuyalabs/yasumi": "^2.2",
"cakephp/acl": "4.x-dev",
"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",
"ddeboer/imap": "^1.9",
"erusev/parsedown": "^1.7",
"erusev/parsedown-extra": "^0.7.1",
"freedsx/ldap": "^0.5.0",
"friendsofcake/cakepdf": "4.0.0-beta",
"guiguiboy/php-cli-progress-bar": "^0.0.4",
"guzzlehttp/guzzle": "^6.5",
"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",
"mobiledetect/mobiledetectlib": "2.*",
"spatie/emoji": "^2.1",
"symfony/filesystem": "^3.2",
"symfony/finder": "^3.2",
"symfony/process": "^3.4",
"symfony/yaml": "^5.0",
"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
}
}