Download the PHP package hazaveh/php-link-preview without Composer
On this page you can find all versions of the php package hazaveh/php-link-preview. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package php-link-preview
PHP Link Preview
PHP Link Preview is a small library that can crawl and return the OG & Meta tags of an URL. This can be used in your applications to display a preview of a URL similar to what happens when you paste a link in Social Media sites or Whatsapp.
Current Information
title
: open graph title, if not found page title will be returneddescription
: open graph description, if not found page description from meta tag is returnedimage
: open graph imageicon
: favicon (if icon is explicitly specified in the HTML source)
Dependencies
- PHP >= 8.2
- Guzzle >= 6
- Symfony DomCrawler >= 3.0
- Symfony CssSelector >= 3.0
Installation
Simply run via composer:
composer require hazaveh/php-link-preview
Usage
Create an instance of Client and use parse
method to crawl a URL.
Using Custom Parser
Out of the box this library comes with a Parser that uses included extractor classes to extract different pieces of information from the page. You can always use a custom parser that implements ParserInterface
and have your own logic to extract information from the page.
You are also free to use a Custom Link class which would then include additional information you might want to parse off the website during parsing process.
Contribution
Do something cool and add a PR.
All versions of php-link-preview with dependencies
symfony/dom-crawler Version ^3.0|^4.0|^5.0|^6.0|^7.0
guzzlehttp/guzzle Version ^6.1|^7.1
symfony/css-selector Version ^3.0|^4.0|^5.0|^6.0|^7.0