md2json-symfony für verbessertes Markdown-Parsing via Composer und Symfony statt regex oder spyc

This commit is contained in:
Jörg Lohrer 2025-03-24 13:02:03 +01:00
parent 51573e2fe7
commit b6d64972a2
452 changed files with 40010 additions and 0 deletions

View file

@ -0,0 +1,20 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
if (\PHP_VERSION_ID < 80000) {
interface Stringable
{
/**
* @return string
*/
public function __toString();
}
}