mediashare/scraper

Scrapes the information from the targeted page and provides a DomCrawler

Installs: 289

Dependents: 1

Suggesters: 0

Security: 0

Stars: 5

Watchers: 2

Forks: 0

Open Issues: 1

pkg:composer/mediashare/scraper

0.1.6 2021-11-27 19:41 UTC

This package is auto-updated.

Last update: 2025-09-12 22:25:47 UTC


README

💫 Scrapes the information from the targeted page and provides a DomCrawler.

DomCrawler

Scraper use DomCrawler library. This is symfony component for DOM navigation for HTML and XML documents. You can retrieve Documentation Here.

Installation

composer require mediashare/scraper

Usage

<?php
require 'vendor/autoload.php';

use Mediashare\Scraper\Scraper;
$scraper = new Scraper("http://marquand.pro");
$scraper->run();
dump($scraper);