mpinchuk/scraper

Provides an ability to scrap articles from GRBJ homepage

0.1 2017-07-26 15:36 UTC

This package is not auto-updated.

Last update: 2024-04-19 18:21:31 UTC


README

Provides an ability to scrap articles from GRBJ homepage

Installation

This package is available for easy installation through Packagist

composer require mpinchuk/scraper

Example Controller Usage

<?php

namespace App\Http\Controllers;

use Mpinchuk\Scraper\GRBJ;

class SiteController extends Controller
{
    public function scrap()
    {
        $scraper = new GRBJ();
        $data = $scraper->scrap();
        var_dump($data);
        exit;
    }
}