sayyid2112 / epub
v0.0.6
2022-11-05 08:12 UTC
Requires
- php: >=5.3.2
README
Installation
Composer (preferred)
Add justinrainbow/epub to your composer.json file.
{ "require": { "sayyid2112/epub": "master-dev" } }
Then just run the composer.phar install (or composer.phar update if
you added this to an existing composer.json file).
wget http://getcomposer.org/composer.phar php composer.phar install
Symfony2 Deps
Add the following to your deps file
[epub] git=http://github.com/sayyid2112/epub.git
After you have run the bin/vendors install script, add the following
to your autoload.php file.
<?php $loader->registerNamespaces(array( // ... other namespaces ... 'ePub' => __DIR__.'/../vendor/epub/src' ));
Usage
<?php $reader = new \ePub\Reader(); $epub = $reader->load('my-book.epub'); printf("Title: %s\n", $epub->getMetadata()->get('title'));