Updated markdown parser

This commit is contained in:
Jan Böhmer 2019-06-16 12:50:40 +02:00
parent c46e6ff94c
commit 51763db070
3 changed files with 57 additions and 14 deletions

View file

@ -11,7 +11,7 @@
"friendsofsymfony/ckeditor-bundle": "^2.0", "friendsofsymfony/ckeditor-bundle": "^2.0",
"omines/datatables-bundle": "^0.2.2", "omines/datatables-bundle": "^0.2.2",
"php-translation/symfony-bundle": "^0.8.1", "php-translation/symfony-bundle": "^0.8.1",
"s9e/text-formatter": "^1.4", "s9e/text-formatter": "^2.0",
"sensio/framework-extra-bundle": "^5.1", "sensio/framework-extra-bundle": "^5.1",
"shivas/versioning-bundle": "^3.1", "shivas/versioning-bundle": "^3.1",
"symfony/apache-pack": "^1.0", "symfony/apache-pack": "^1.0",

66
composer.lock generated
View file

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "33ae644ef6fad94e686146bf57e0363e", "content-hash": "1a794cf54f952c4bf1bc00d8f952b6a3",
"packages": [ "packages": [
{ {
"name": "doctrine/annotations", "name": "doctrine/annotations",
@ -2433,30 +2433,67 @@
"time": "2018-11-20T15:27:04+00:00" "time": "2018-11-20T15:27:04+00:00"
}, },
{ {
"name": "s9e/text-formatter", "name": "s9e/regexp-builder",
"version": "1.4.5", "version": "1.4.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/s9e/TextFormatter.git", "url": "https://github.com/s9e/RegexpBuilder.git",
"reference": "6857c53658929b66dc0d92daece17f211c64ea61" "reference": "59d0167a909659d718f53964f7653d2c83a5f8fe"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/s9e/TextFormatter/zipball/6857c53658929b66dc0d92daece17f211c64ea61", "url": "https://api.github.com/repos/s9e/RegexpBuilder/zipball/59d0167a909659d718f53964f7653d2c83a5f8fe",
"reference": "6857c53658929b66dc0d92daece17f211c64ea61", "reference": "59d0167a909659d718f53964f7653d2c83a5f8fe",
"shasum": ""
},
"require": {
"lib-pcre": ">=7.2",
"php": ">=5.5.1"
},
"require-dev": {
"phpunit/phpunit": "<5.8"
},
"type": "library",
"autoload": {
"psr-4": {
"s9e\\RegexpBuilder\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"description": "Single-purpose library that generates regular expressions that match a list of strings.",
"homepage": "https://github.com/s9e/RegexpBuilder/",
"keywords": [
"regexp"
],
"time": "2019-04-26T17:55:23+00:00"
},
{
"name": "s9e/text-formatter",
"version": "2.0.1",
"source": {
"type": "git",
"url": "https://github.com/s9e/TextFormatter.git",
"reference": "9bd8b56ebbb9a93eb99c05141e31fded4149de0e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/s9e/TextFormatter/zipball/9bd8b56ebbb9a93eb99c05141e31fded4149de0e",
"reference": "9bd8b56ebbb9a93eb99c05141e31fded4149de0e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-dom": "*", "ext-dom": "*",
"ext-filter": "*", "ext-filter": "*",
"lib-pcre": ">=7.2", "lib-pcre": ">=8.13",
"php": ">=5.4.7" "php": ">=7.1",
"s9e/regexp-builder": "^1.4"
}, },
"require-dev": { "require-dev": {
"matthiasmullie/minify": "*", "matthiasmullie/minify": "*",
"php-coveralls/php-coveralls": "*", "phpunit/phpunit": "^7"
"phpunit/phpunit": "<6",
"s9e/regexp-builder": "1.*"
}, },
"suggest": { "suggest": {
"ext-curl": "Improves the performance of the MediaEmbed plugin and some JavaScript minifiers", "ext-curl": "Improves the performance of the MediaEmbed plugin and some JavaScript minifiers",
@ -2468,6 +2505,9 @@
"ext-zlib": "Enables gzip compression when scraping content via the MediaEmbed plugin" "ext-zlib": "Enables gzip compression when scraping content via the MediaEmbed plugin"
}, },
"type": "library", "type": "library",
"extra": {
"version": "2.0.1"
},
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"s9e\\TextFormatter\\": "src" "s9e\\TextFormatter\\": "src"
@ -2496,7 +2536,7 @@
"parser", "parser",
"shortcodes" "shortcodes"
], ],
"time": "2019-06-04T15:47:55+00:00" "time": "2019-06-06T13:44:40+00:00"
}, },
{ {
"name": "sensio/framework-extra-bundle", "name": "sensio/framework-extra-bundle",

View file

@ -189,6 +189,9 @@
"roave/security-advisories": { "roave/security-advisories": {
"version": "dev-master" "version": "dev-master"
}, },
"s9e/regexp-builder": {
"version": "1.4.3"
},
"s9e/text-formatter": { "s9e/text-formatter": {
"version": "1.4.1" "version": "1.4.1"
}, },