-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.16 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
{
"name": "samsara/roster",
"type": "library",
"description": "A PHP console tool to generate Markdown documentation from your docblocks and types hints using templates.",
"keywords": ["documentation", "markdown", "template", "console", "cli", "command line", "mkdocs", "rtd", "material design"],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/JordanRL"
}
],
"support": {
"issues": "https://github.com/JordanRL/Roster/issues",
"docs": "https://jordanrl.github.io/Roster/",
"source": "https://github.com/JordanRL/Roster"
},
"authors": [
{
"name": "Jordan LeDoux",
"homepage": "https://github.com/JordanRL",
"role": "Developer"
}
],
"license": "GPL-3.0-only",
"require": {
"symfony/console": "^v5.3",
"samsara/mason": "^0.2",
"hassankhan/config": "^2.2",
"symfony/yaml": "^5.3",
"opis/json-schema": "^2.0",
"php": ">=8.0"
},
"require-dev": {
},
"bin": ["bin/roster"],
"autoload": {
"psr-4": {
"Samsara\\Roster\\": "src/Samsara/Roster/"
}
},
"autoload-dev": {
"psr-4": {
"Samsara\\Roster\\": "tests/Samsara/Roster/"
}
}
}