-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
43 lines (42 loc) · 1017 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
43
{
"name": "undefinedoffset/silverstripe-markdown",
"description": "Adds a field and a data type that allows for Markdown editing, uses the github api to render the html",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "markdown"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ed Chipman",
"homepage": "http://www.edchipman.ca",
"role": "Developer"
}
],
"require": {
"silverstripe/framework": "^4.0",
"michelf/php-markdown": "^1.8",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "*"
},
"support": {
"issues": "https://github.com/undefinedoffset/silverstripe-markdown/issues"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"expose": [
"css",
"javascript"
]
},
"autoload": {
"psr-4": {
"UndefinedOffset\\Markdown\\": "src/",
"UndefinedOffset\\Markdown\\Test\\": "tests/"
}
}
}