forked from VitexSoftware/Icinga-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (37 loc) · 1.02 KB
/
composer.json
File metadata and controls
38 lines (37 loc) · 1.02 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
{
"name": "vitexsoftware/icinga-editor",
"description": "Editor of Icinga Configuration files",
"license": "GPL-2.0",
"version": "1.2.1",
"authors": [
{
"name": "vitex",
"email": "info@vitexsoftware.cz"
}
],
"require": {
"php": ">= 5.5.9",
"vitexsoftware/ease-framework": "dev-master",
"league/commonmark": "^0.15.0",
"pear/mail": ">=1.3.0",
"pear/mail_mime": ">=1.10.0"
},
"autoload": {
"psr-4": {
"Icinga\\Editor\\": "src/classes/",
"Icinga\\Editor\\Engine\\": "src/classes/engine/",
"Icinga\\Editor\\UI\\": "src/classes/UI",
"Icinga\\Editor\\modules\\": "src/modules"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Ease\\": "vendor/vitexsoftware/ease-framework/tests/src/Ease",
"Test\\": "testing/"
}
},
"require-dev": {
"phpunit/php-token-stream": "~1.2",
"robmorgan/phinx": "dev-master"
}
}