php-extended / php-api-endpoint-http-html-object
This package is abandoned and no longer maintained.
The author suggests using the php-extended/php-reifier-object package instead.
A library that implements the php-extended/php-api-endpoint-http-html-interface library
6.0.6
2023-08-13 15:47 UTC
Requires
Requires (Dev)
This package is auto-updated.
Last update: 2023-08-18 08:00:46 UTC
README
A library that implements the php-extended/php-api-endpoint-http-html-interface library.
Installation
The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.
- Download
composer.phar
from their website. - Then run the following command to install this library as dependency :
php composer.phar php-extended/php-api-endpoint-http-html-object ^6
Basic Usage
This library is made to be extended. The HttpEndpoint implementation is a generic object that is made to ease the transform into a really useful endpoint that may be something like :
use PhpExtended\Endpoint\HttpHtmlEndpoint;
class MyEndpoint extends HttpHtmlEndpoint
{
public function getFoo() : Foo
{
$data = $this->htmlGet('https://example.com');
$id = $this->cssSelectOne('#id')->getText();
$value = $this->cssSelectOne('#value')->getText();
return new Foo($id, $value);
}
}
License
MIT (See license file).