| Package Data | |
|---|---|
| Maintainer Username: | ammadeuss |
| Maintainer Contact: | raducan@ammadeuss.ro (Ammadeuss Raducan) |
| Package Create Date: | 2017-02-14 |
| Package Last Update: | 2019-09-04 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-28 03:03:46 |
| Package Statistics | |
|---|---|
| Total Downloads: | 362,875 |
| Monthly Downloads: | 340 |
| Daily Downloads: | 16 |
| Total Stars: | 37 |
| Total Watchers: | 3 |
| Total Forks: | 22 |
| Total Open Issues: | 5 |
Laravel wrapper for the PHP Simple HTML DOM Parser package
Require this package with composer:
composer require ammadeuss/laravel-html-dom-parser
You need to add the service provider in app.php
Ammadeuss\LaravelHtmlDomParser\ServiceProvider::class,
If you want to use the facade, add this to your facades in app.php
'HTMLDomParser' => Ammadeuss\LaravelHtmlDomParser\Facade::class
$name = HTMLDomParser::str_get_html($html)->find('div.profile > span.name > span')[0]->plaintext;