1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00
This commit is contained in:
Pascal Baljet 2020-11-03 11:20:59 +00:00 committed by GitHub
commit f76f8c74ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View File

@ -20,6 +20,8 @@ matrix:
dist: bionic
- php: 7.4
dist: bionic
- php: 8.0snapshot
dist: bionic
install:
- composer install --prefer-dist --no-interaction --no-progress

View File

@ -17,7 +17,7 @@
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35"
"phpunit/phpunit": "^4.8.35|^9.0"
},
"autoload": {
"psr-0": {"Parsedown": ""}

View File

@ -1,11 +1,13 @@
<?php
use PHPUnit\Framework\TestCase;
/**
* Test Parsedown against the CommonMark spec
*
* @link http://commonmark.org/ CommonMark
*/
class CommonMarkTestStrict extends PHPUnit_Framework_TestCase
class CommonMarkTestStrict extends TestCase
{
const SPEC_URL = 'https://raw.githubusercontent.com/jgm/CommonMark/master/spec.txt';