-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.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": "phpdocumentor/guides-cli",
"description": "Allows you to run phpDocumentor Guides as a stand alone application as console command",
"type": "project",
"license": "MIT",
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"phpDocumentor\\Guides\\Cli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"phpDocumentor\\Guides\\": [
"tests/unit/"
]
}
},
"authors": [
{
"name": "jaapio",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"monolog/monolog": "^2.9 || ^3.0",
"phpdocumentor/guides": "^1.0 || ^2.0",
"phpdocumentor/guides-restructured-text": "^1.0 || ^2.0",
"symfony/config": "^5.4 || ^6.3 || ^7.0",
"symfony/console": "^5.4 || ^6.3 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.3 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.3 || ^7.0"
},
"bin": [
"bin/guides"
],
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
}
}
}