Update dependencies

This commit is contained in:
Stéphane Goetz 2018-09-26 21:38:07 +02:00
parent d1089b114e
commit b05010fd00
4 changed files with 385 additions and 250 deletions

View File

@ -19,13 +19,13 @@
"require": { "require": {
"php": ">=7.1.3", "php": ">=7.1.3",
"guzzlehttp/guzzle": "~6.0", "guzzlehttp/guzzle": "~6.0",
"league/commonmark": "^0.15", "league/commonmark": "^0.17",
"league/plates": "~3.1", "league/plates": "~3.1",
"myclabs/deep-copy": "^1.5", "myclabs/deep-copy": "^1.5",
"symfony/console": "^4.0", "symfony/console": "^4.0",
"symfony/http-foundation": "^4.0", "symfony/http-foundation": "^4.0",
"symfony/process": "^4.0", "symfony/process": "^4.0",
"webuni/commonmark-table-extension": "0.6.*", "webuni/commonmark-table-extension": "0.8.*",
"webuni/front-matter": "^1.0.0", "webuni/front-matter": "^1.0.0",
"symfony/polyfill-intl-icu": "^1.9" "symfony/polyfill-intl-icu": "^1.9"
}, },
@ -41,7 +41,7 @@
"justinwalsh/daux.io": "*" "justinwalsh/daux.io": "*"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "~5.7", "phpunit/phpunit": "~7.3",
"mikey179/vfsStream": "^1.6" "mikey179/vfsStream": "^1.6"
} }
} }

626
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -19,7 +19,7 @@ class TableOfContentsParser extends AbstractBlockParser
} }
$previousState = $cursor->saveState(); $previousState = $cursor->saveState();
$cursor->advanceToFirstNonSpace(); $cursor->advanceToNextNonSpaceOrNewline();
$fence = $cursor->match('/^\[TOC\]/'); $fence = $cursor->match('/^\[TOC\]/');
if (is_null($fence)) { if (is_null($fence)) {
$cursor->restoreState($previousState); $cursor->restoreState($previousState);

View File

@ -8,7 +8,6 @@
convertWarningsToExceptions="true" convertWarningsToExceptions="true"
processIsolation="false" processIsolation="false"
stopOnFailure="false" stopOnFailure="false"
syntaxCheck="false"
> >
<testsuites> <testsuites>
<testsuite name="Daux Test Suite"> <testsuite name="Daux Test Suite">