yiirocks / simple-html-dom
Simple Html Dom Parser for Yii
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Type:yii3-extension
Requires
- php: >=8.1.0
- voku/simple_html_dom: ^4.8
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.70
- phpmd/phpmd: @stable
- phpunit/phpunit: ^10.5
- squizlabs/php_codesniffer: ^3.11
- yiisoft/config: ^1.6
- yiisoft/di: *
This package is auto-updated.
Last update: 2025-03-13 21:16:28 UTC
README
This extension configures voku/simple_html_dom
Installation
The package could be installed via composer:
composer require yiirocks/simple-html-dom
Usage
use YiiRocks\SimpleHtmlDom\SimpleHtmlDomInterface; class Class { private SimpleHtmlDomInterface $dom; __construct(SimpleHtmlDomInterface $dom) { $this->dom = $dom; } }
Available options can be found in the API Readme.
Unit testing
The package is tested with PHPUnit. To run tests:
./vendor/bin/phpunit