This is a port of WordPress' brilliant shortcode feature for use outside of WordPress. The code has remained largely unchanged.
The purpose of this project is to use the familiar WordPress shortcode syntax in any system
$shortcodes = new Badcow\Shortcodes\Shortcodes;
$shortcodes->addShortcode('hello', function ($attributes, $content, $tagName) {
return $attributes['greeting'] . ', ' . $content;
});
echo $shortcodes->process('My shortcode does this: [hello greeting="Konnichiwa"]world![/hello]');
Use Composer. That's what all the cool kids use.
"require" : { "badcow/shortcodes": "dev-master" }
phpunit /path/to/shortcodes