-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
68 lines (68 loc) · 2.09 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "haleks/writedown",
"description": "Writedown integrate markdown \"curly\" braces inside the blade template engine, adding view extension and also giving the possibility of extending CommonMark.",
"keywords": ["writedown", "laravel", "blade", "markdown", "parsedown", "parsedown extra", "commonmark"],
"license": "MIT",
"support": {
"issues": "https://github.com/haleks/writedown/issues",
"source": "https://github.com/haleks/writedown"
},
"authors": [
{
"name": "Alexandre Villeneuve",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"illuminate/contracts": "5.7.*",
"illuminate/support": "5.7.*",
"illuminate/view": "5.7.*"
},
"require-dev": {
"erusev/parsedown": "~1.6",
"erusev/parsedown-extra": "~0.7",
"michelf/php-markdown": "~1.7",
"league/commonmark": "~0.16",
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~7.0",
"orchestra/testbench": "3.7.*"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Haleks\\Writedown\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Haleks\\Writedown\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
},
"laravel": {
"providers": [
"Haleks\\Writedown\\WritedownServiceProvider"
],
"aliases": {
"Writedown": "Haleks\\Writedown\\Facades\\Writedown"
}
}
},
"suggest": {
"erusev/parsedown": "Required to use the parsedown driver (~1.6).",
"erusev/parsedown-extra": "Required to use the parsedownextra driver (~0.7).",
"michelf/php-markdown": "Required to use the markdown driver (~1.6)",
"league/commonmark": "Required to use the commonmark driver (~0.15)"
},
"minimum-stability": "dev",
"prefer-stable": true
}