-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 962 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
42
{
"name" : "nadar/github-markdown-fixer",
"description" : "github markdown fixer",
"type" : "project",
"keywords" : ["github", "markdown", "fixer", "gfm"],
"license": "MIT",
"homepage" : "https://github.com/nadar",
"authors" : [
{
"name" : "Basil Suter",
"email" : "[email protected]",
"homepage" : "https://github.com/nadar"
}
],
"support" : {
"issues" : "https://github.com/nadar/github-markdown-fixer/issues"
},
"require": {
"luyadev/luya-core": "~1.0.0"
},
"autoload" : {
"psr-4" : {
"gmf\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"gmf\\tests\\" : "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"bin" : [
"src/gmf"
],
"require-dev": {
"luyadev/luya-testsuite": "~1.0.0"
}
}