awizemann/metascraper

Laravel package to get all the meta data from a URL (forked from rookmoot/metascraper)

Installs: 1 891

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 1

pkg:composer/awizemann/metascraper

V1.3 2021-08-22 02:36 UTC

This package is auto-updated.

Last update: 2025-12-23 13:39:33 UTC


README

Laravel 8 package to get all the meta data from a URL.

It will first check the URL for it's Mime type.

Forked from an unsupported repo: rookmoot/MetaScrapper

Supports

  • Meta tags
  • Twitter tags
  • OpenGraph tags
  • Any other type of tag
  • Files (Image, Audio, Video)
  • Application Mime type

Installation

Via Composer

$ composer require awizemann/metascraper

Usage

use awizemann\metascraper\Facades\MetaScraper;

$scraper = new MetaScraper;
return $scraper->scrape("https://yahoo.com");

This will return an array of all the meta for the given URL.