-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.14 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
{
"name": "club-1/sphinx-inventory-parser",
"description": "Parse Sphinx documentation's object.inv inventory file format into an indexed SphinxInventory object.",
"type": "library",
"license": "LGPL-2.1-or-later",
"homepage": "https://github.com/club-1/sphinx-inventory-parser",
"support": {
"docs": "https://club-1.github.io/sphinx-inventory-parser/"
},
"autoload": {
"psr-4": {
"Club1\\SphinxInventoryParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Club1\\SphinxInventoryParser\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Nicolas Peugnet",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-zlib": "*"
},
"require-dev": {
"doxphp/doxphp": "dev-master",
"nikic/php-fuzzer": "^0.0.10",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/club-1/doxphp"
}
],
"config": {
"sort-packages": true
}
}