-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.62 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
{
"minimum-stability": "dev",
"prefer-stable": true,
"name": "Flyve MDM",
"description": "Flyve MDM plugin for GLPI",
"type": "project",
"license": "AGPL-3.0-or-later",
"keywords": [
"glpi",
"flyve",
"mdm"
],
"config": {
"platform": {
"php": "5.6.0"
},
"optimize-autoloader": true,
"apcu-autoloader": true
},
"require": {
"php": ">= 5.6.0",
"ext-gd": "*",
"ext-zip": "*",
"ext-openssl": "*",
"ext-sockets": "*",
"sskaje/mqtt": "dev-master",
"tufanbarisyildirim/php-apk-parser": "^2.0",
"docopt/docopt": "^1.0",
"twig/twig": "^1.0",
"sly/notification-pusher": "^2.3"
},
"require-dev": {
"ext-bz2": "*",
"atoum/atoum": "^3.1",
"consolidation/robo": "^1.3",
"glpi-project/tools": "^0.1.2",
"atoum/stubs": "^2.5",
"atoum/reports-extension": "^3.0",
"pear/archive_tar": "^1.4",
"jakub-onderka/php-parallel-lint": "^1.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/flyve-mdm/flyve-mdm-glpi-test",
"no-api": true
}
],
"autoload": {
"psr-4": {
"GlpiPlugin\\Flyvemdm\\": "inc/"
}
},
"autoload-dev": {
"psr-4": {
"Flyvemdm\\Tests\\": "tests/src/Flyvemdm/Tests/",
"Glpi\\Tests\\": "tests/src/Glpi/Tests/",
"tests\\units\\": [
"tests/suite-unit/",
"tests/suite-integration/"
]
}
}
}