-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
32 lines (32 loc) · 915 Bytes
/
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
{
"name": "phing/task-phpdoc",
"description": "This task runs phpDocumentor 2, a API documentation tool. This project is the result of the merge of the phpDocumentor and DocBlox projects.",
"license": "LGPL-3.0-only",
"type": "phing-extension",
"authors": [
{
"name": "Siad Ardroumli",
"email": "siad.ardroumli@gmail.com"
}
],
"require": {
"php": ">= 7.4"
},
"require-dev": {
"phing/phing": "3.0.x-dev",
"phpdocumentor/phpdocumentor": "^3.1"
},
"autoload": {
"psr-4": {
"Phing\\Task\\Ext\\PhpDoc\\": ""
}
},
"extra": {
"phing-custom-taskdefs": {
"phpdoc": "Phing\\Task\\Ext\\PhpDoc\\PhpDocumentor2Task",
"phpdoc2": "Phing\\Task\\Ext\\PhpDoc\\PhpDocumentor2Task"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}