prezent / inky
PHP implementation of Zurb's Inky parser
Installs: 427 737
Dependents: 1
Suggesters: 0
Security: 0
Stars: 4
Watchers: 7
Forks: 0
Open Issues: 0
pkg:composer/prezent/inky
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: 2025-11-14 13:49:28 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>');