Larability is a fork of PHP Readability Library for use with Laravel 4.
In your config/app.php
add 'Jonwhittlestone\Larability\LarabilityServiceProvider'
to the end of the $providers
array
'providers' => array(
'Illuminate\Foundation\Providers\ArtisanServiceProvider',
'Illuminate\Auth\AuthServiceProvider',
...
'Jonwhittlestone\Larability\LarabilityServiceProvider',
),
Publish the larability image directory
php artisan asset:publish jonwhittlestone/larability
####How to Use
$results = Larability::read('http://www.bbc.co.uk/news/uk-31792238');
print '<pre>' . print_r($results, true) . '</pre>';