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-04-15 19:03:27 UTC


README

tests codecov.io PHPStan Enabled 68747470733a2f2f6170692e636f6465636c696d6174652e636f6d2f76312f6261646765732f35313631643165346664383461396165616464362f6d61696e7461696e6162696c697479 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);
}