summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-06-10Merge pull request #207 from derrabus/bugfix/php8-nullAsmir Mustafic
Fix PHP 8.1 deprecations
2021-06-05Fix PHP 8.1 deprecationsAlexander M. Turek
2021-03-28Merge pull request #204 from alecpl/travis-php8Asmir Mustafic
Travis: Enable tests on PHP 8.0
2021-03-28Travis: Force proper phpunit version for PHP8Aleksander Machniak
2021-03-28Travis: Run PHP8 tests on BionicAleksander Machniak
2021-03-28Travis: Enable tests on PHP 8.0Aleksander Machniak
Cleanup tests code and setup
2020-10-012.7.4Asmir Mustafic
2020-09-01Merge pull request #194 from bytestream/anchor-target-query-paramAsmir Mustafic
fix: query parameter parsed as character entity
2020-09-01Merge pull request #195 from Ayesh/export-ignoreAsmir Mustafic
Add .gitattributes file with export-ignore rules
2020-08-31Add .gitattributes file with export-ignore rulesAyesh Karunaratne
2020-08-24phpcsKieran Brahney
2020-08-24replaced assertStringContainsString with assertContainsKieran Brahney
2020-08-24fix: character entity parsingKieran Brahney
2020-08-24added testKieran Brahney
2020-07-05Merge pull request #191 from Masterminds/build-fixAsmir Mustafic
Fix travisci build
2020-07-05remove some unused depsAsmir Mustafic
2020-07-05fix travis buildAsmir Mustafic
2020-07-05cs fixAsmir Mustafic
2020-07-05prepare 2.7.3Asmir Mustafic
2020-07-03Merge pull request #190 from Masterminds/mitigate-cyclic-refsAsmir Mustafic
mitigate cyclic reference between output rules and the traverser objects
2020-07-03mitigate cyclic reference between output rules and the traverser objectsAsmir Mustafic
2020-07-01prepare 2.7.2Asmir Mustafic
2020-06-30Merge pull request #187 from lyrixx/fix-memory-leakAsmir Mustafic
Fixed memory leak in HTML5::saveHTML()
2020-06-30Fixed memory leak in HTML5::saveHTML()Grégoire Pineau
2020-06-24Merge pull request #186 from IMSoP/issue-185-closing-brAsmir Mustafic
Add special case for end tag </br>. Fixes #185
2020-06-24Add special case for end tag </br>. Fixes #185Rowan Tommins
Normally, an end tag for a void element would simply be discarded, but the spec includes a special rule as follows: > An end tag whose tag name is "br" > Parse error. Drop the attributes from the token, and act as > described in the next entry; i.e. act as if this was a "br" > start tag token with no attributes, rather than the end tag > token that it actually is.
2020-02-06Merge pull request #178 from Masterminds/eof-entityAsmir Mustafic
Prevent infinite loop on un-terminated entity declaration at EOF
2020-02-06prevent infinite loop on unterminated entity declaration at end of streamAsmir Mustafic
2019-10-14Merge pull request #171 from xabbuh/php-7.4-compatAsmir Mustafic
add PHP 7.4 job
2019-10-14Fix Trying to access array offset on value of type nullRemi Collet
2019-10-14add PHP 7.4 jobChristian Flothmann
2019-07-25prepare 2.7.0 releaseAsmir Mustafic
2019-06-15Merge pull request #168 from idimopoulos/html5_encodingAsmir Mustafic
Set default encoding in the DOMDocument object
2019-06-14Set default encoding in case it does not exist.Ilias Dimopoulos
2019-06-14Set default encoding in the doc object.Ilias Dimopoulos
2019-03-10Merge pull request #164 from Masterminds/drop-hhvmAsmir Mustafic
Drop HHVM support
2019-03-10test on php 7.3Asmir Mustafic
2019-03-10drop hhvm supportAsmir Mustafic
2019-03-10prepare 2.6.0Asmir Mustafic
2019-02-22Merge pull request #163 from tgalopin/charset-supportAsmir Mustafic
Allow to pass a charset to the Scanner
2019-02-06Fix testTitouan Galopin
2018-12-29Add encoding testsTitouan Galopin
2018-12-29Allow to pass a charset to the ScannerTitouan Galopin
2018-12-29Increase branch aliasAsmir Mustafic
2018-12-27update changelog for 2.5.0Asmir Mustafic
2018-11-27Merge pull request #162 from stof/optimize_textAsmir Mustafic
Optimize the processing of text between nodes
2018-11-27Optimize the processing of text between nodesChristophe Coevoet
Instead of processing the text token one by one in the main loop, it is now processed in batch until the next special token (< and & which have special handling in the main loop and NUL characters which need to report a parse error).
2018-11-27Merge pull request #161 from stof/optimize_main_loopAsmir Mustafic
Optimize main loop
2018-11-26Optimize the main loopChristophe Coevoet
2018-11-26Merge pull request #155 from stof/optimize_attributesAsmir Mustafic
Optimize the parsing of unquoted attributes