prezent / inky
PHP implementation of Zurb's Inky parser
0.2.0
2025-11-07 13:05 UTC
Requires
- php: ^7.0|^8.0
- ext-dom: *
Requires (Dev)
- phpunit/phpunit: ^9.6 || ^10.5 || ^11.0
- symfony/css-selector: ^5.4|^6.0|^7.0
- symfony/dom-crawler: ^5.4|^6.0|^7.0
This package is auto-updated.
Last update: 2026-03-14 14:41:19 UTC
README
A PHP implementation of Zurb's Inky parser.
Installation
You can use Composer to install this library
composer require prezent/inky
Usage
Simply create a new Inky instance and feed it an email template.
use Prezent\Inky\Inky; $inky = new Inky(); echo $inky->parse('<html>....</html>');