-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
executable file
·50 lines (50 loc) · 1.29 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
{
"name": "johnnyhuy/laravel-useful-commonmark-extension",
"type": "library",
"description": "Laravel useful CommonMark extension for Laravel 5, 6 & 7",
"keywords": ["youtube", "php", "laravel", "markdown", "commonmark", "phpleague", "laravel-package"],
"license": "MIT",
"authors": [
{
"name": "Johnny Huynh",
"email": "[email protected]",
"homepage": "http://johnnyhuy.com",
"role": "Developer"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/johnnyhuy/laravel-useful-commonmark-extension"
}
],
"require": {
"php": "^7.1.3",
"ext-json": "*",
"league/commonmark": "^1.1.0",
"spatie/commonmark-highlighter": "^2.1"
},
"require-dev": {
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"JohnnyHuy\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JohnnyHuy\\Laravel\\Markdown\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"minimum-stability": "stable"
}