mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
WIP
This commit is contained in:
parent
6598f3860c
commit
7238574c2a
@ -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
|
||||
|
@ -17,7 +17,7 @@
|
||||
"ext-mbstring": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^4.8.35"
|
||||
"phpunit/phpunit": "^4.8.35|^9.0"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-0": {"Parsedown": ""}
|
||||
|
@ -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';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user