jeyroik/extas-parsers

There is no license information available for the latest version (0.5.0) of this package.

Extas parsers package

This package is auto-updated.

Last update: 2024-10-15 19:59:40 UTC


README

tests codecov.io PHPStan Enabled Extas Installer v3 Latest Stable Version Total Downloads Dependents

Описание

Пакет предоставляет парсеры.

Использование

$parser = SystemContainer::getItem(IParserRepository::class);
$text = 'Some text with @placeholders or anything {else}';
if ($parser->canParse($text)) {
    echo $parser->parse($text);
}