forked from alsterholm/laravel-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 880 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 880 Bytes
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
{
"name": "andreasindal/laravel-markdown",
"description": "Simple Blade directive for markdown parsing.",
"license": "MIT",
"authors": [
{
"name": "Andreas Indal",
"email": "andreas@rocketship.se"
}
],
"require": {
"Illuminate/Support": "^5.5|^5.6|^5.7|^5.8|^6.0",
"erusev/parsedown": "^1.6"
},
"autoload": {
"psr-4": {
"Indal\\Markdown\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"mockery/mockery": "^0.9.9"
},
"extra": {
"laravel": {
"providers": [
"Indal\\Markdown\\MarkdownServiceProvider"
],
"aliases": {
"Markdown": "Indal\\Markdown\\Facade"
}
}
}
}