-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 971 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
41
{
"name": "kpion/spaghetti",
"description": "Spaghetti - making Markdown with PHP",
"license": "MIT",
"type": "project",
"keywords": ["markdown", "md", "documentation", "generator"],
"require": {
"php": "^7.4|^8.0"
},
"bin": [
"bin/spaghetti"
],
"autoload": {
"psr-4": {
"Kpion\\Spaghetti\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kpion\\Spaghetti\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"config": {
"sort-packages": true
},
"support": {
"issues": "https://github.com/kpion/spaghetti/issues",
"source": "https://github.com/kpion/spaghetti"
},
"authors": [
{
"name": "Konrad Papala",
"email": "konradpapala@gmail.com",
"homepage": "https://github.com/kpion",
"role": "Developer"
}
]
}