forked from manifestuk/smartdown.craft-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.32 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
47
48
49
50
51
52
{
"name": "experience/smartdown",
"description": "Bringing the unbridled joy of Markdown Extra and Smartypants to your Craft websites.",
"type": "craft-plugin",
"version": "3.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"markdown",
"smartypants",
"typography"
],
"support": {
"docs": "https://github.com/experience/smartdown.craft-plugin/blob/master/README.md",
"issues": "https://github.com/experience/smartdown.craft-plugin/issues"
},
"license": "MIT",
"authors": [
{
"name": "Experience",
"homepage": "https://experiencehq.net"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"michelf/php-markdown": "^1.8",
"michelf/php-smartypants": "^1.8"
},
"autoload": {
"psr-4": {
"experience\\smartdown\\": "src/",
"experience\\smartdown\\tests\\": "tests/"
}
},
"extra": {
"changelogUrl": "https://github.com/experience/smartdown.craft-plugin/blob/master/CHANGELOG.md",
"components": {
"smartdown": "experience\\smartdown\\services\\Smartdown"
},
"class": "experience\\smartdown\\Smartdown",
"handle": "smartdown",
"hasCpSection": false,
"hasSettings": false,
"name": "Smartdown",
"sourceLanguage": "en-GB"
},
"require-dev": {
"codeception/codeception": "dev-master"
}
}