-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
54 lines (54 loc) · 1.52 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
{
"name": "glpi-project/inventory_format",
"description": "GLPI Inventory format lib",
"keywords": ["automatic inventory", "GLPI"],
"license": "MIT",
"authors": [
{
"name": "Teclib'",
"email": "glpi@teclib.com",
"homepage": "https://teclib.com"
}
],
"support" : {
"source": "https://github.com/glpi-project/inventory_format",
"issues": "https://github.com/glpi-project/inventory_format/issues"
},
"require": {
"php": ">=7.4",
"seld/jsonlint": "^1.11",
"swaggest/json-schema": "^0.12.42",
"symfony/polyfill-php81": "^1.31",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-ctype": "*",
"ext-curl": "*"
},
"autoload": {
"files": ["lib/php/Converter.php", "lib/php/FilesToJSON.php"]
},
"bin": ["bin/convert", "bin/build_hw_jsons", "bin/refresh_hw_sources","bin/validate"],
"require-dev": {
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.11"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.4.99"
},
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}