Skip to content

Commit ab2d02e

Browse files
committed
Update Emoji and Markdown packages
1 parent fcebd0a commit ab2d02e

File tree

3 files changed

+70
-49
lines changed

3 files changed

+70
-49
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
"php": ">=5.5.9",
2323
"laravel/framework": "~5.2.6",
2424
"alt-three/bus": "^1.0",
25-
"alt-three/emoji": "^2.1",
25+
"alt-three/emoji": "^3.0",
2626
"alt-three/validator": "^1.4",
2727
"asm89/stack-cors": "dev-master as 0.2.2",
2828
"barryvdh/laravel-cors": "^0.7.3",
2929
"doctrine/dbal": "^2.5",
3030
"fideloper/proxy": "^3.1",
3131
"graham-campbell/binput": "^3.3",
3232
"graham-campbell/core": "^4.2",
33-
"graham-campbell/markdown": "^5.3",
33+
"graham-campbell/markdown": "^6.0",
3434
"graham-campbell/throttle": "^5.1",
3535
"graham-campbell/exceptions": "^8.1",
3636
"guzzlehttp/guzzle": "^6.1",

composer.lock

+50-46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/markdown.php

+18-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,22 @@
2727

2828
'views' => false,
2929

30+
/*
31+
|--------------------------------------------------------------------------
32+
| CommonMark Extenstions
33+
|--------------------------------------------------------------------------
34+
|
35+
| This option specifies what extensions will be automatically enabled.
36+
| Simply provide your extension class names here.
37+
|
38+
| Default: []
39+
|
40+
*/
41+
42+
'extensions' => [
43+
'AltThree\Emoji\EmojiExtension',
44+
],
45+
3046
/*
3147
|--------------------------------------------------------------------------
3248
| Renderer Configuration
@@ -105,7 +121,8 @@
105121
| Safe Mode
106122
|--------------------------------------------------------------------------
107123
|
108-
| This option specifies if raw HTML should be allowed in the document.
124+
| This option specifies if raw HTML is rendered in the document. Setting
125+
| this to true will not render HTML, and false will.
109126
|
110127
| Default: false
111128
|

0 commit comments

Comments
 (0)