-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 943 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
33
34
35
36
37
38
39
40
{
"name": "samsara/mason",
"type": "library",
"description": "A PHPDoc docblock interpreter that is simple, easy to use, and provides Attribute alternatives.",
"keywords": ["documentation", "phpdoc", "docblock", "attributes"],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/JordanRL"
}
],
"support": {
"issues": "https://github.com/JordanRL/Mason/issues",
"docs": "https://jordanrl.github.io/Mason/",
"source": "https://github.com/JordanRL/Mason"
},
"authors": [
{
"name": "Jordan LeDoux",
"homepage": "https://github.com/JordanRL",
"role": "Developer"
}
],
"license": "GPL-3.0-only",
"require": {
"samsara/common": "^1"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"Samsara\\Mason\\": "src/Samsara/Mason/"
}
},
"autoload-dev": {
"psr-4": {
"Samsara\\Mason\\": "tests/Samsara/Mason/"
}
}
}