PHPackages                             jeroenherczeg/hyena - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. jeroenherczeg/hyena

ActiveLibrary[Parsing &amp; Serialization](/categories/parsing)

jeroenherczeg/hyena
===================

A Web Scraper for Laravel 5

0.0.2(9y ago)715MITPHPPHP ~5.6|~7.0

Since Aug 22Pushed 9y ago1 watchersCompare

[ Source](https://github.com/jeroenherczeg/hyena)[ Packagist](https://packagist.org/packages/jeroenherczeg/hyena)[ Docs](https://github.com/jeroenherczeg/hyena)[ RSS](/packages/jeroenherczeg-hyena/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependencies (7)Versions (3)Used By (0)

A Web Scraper for Laravel 5
===========================

[](#a-web-scraper-for-laravel-5)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f5a07ed84cae6d3b8418a976cc01f0a492e2a5bf0ce520dc70b3bb9ae3d98ea7/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a65726f656e686572637a65672f6879656e612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeroenherczeg/hyena)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/e446b64e2b8bf2bb87da94ece065eee5cc4b8c68e719f06e2bedfaa351eca2a2/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6a65726f656e686572637a65672f6879656e612f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/jeroenherczeg/hyena)[![Coverage Status](https://camo.githubusercontent.com/0615d4862bcecd32e3093a389d4d22c9c93c398e2237f6b60cca6e11b100fdae/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6a65726f656e686572637a65672f6879656e612e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/jeroenherczeg/hyena/code-structure)[![Quality Score](https://camo.githubusercontent.com/c20b740799a7a6b56f716fb7856c62315c07ff11cf7e228e25f4119ee0227069/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6a65726f656e686572637a65672f6879656e612e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/jeroenherczeg/hyena)[![Total Downloads](https://camo.githubusercontent.com/1e7330340969f888cb35f948c889d7102acc85d59c943ef191e424e9b06d3e8c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a65726f656e686572637a65672f6879656e612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeroenherczeg/hyena)

This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.

Install
-------

[](#install)

Via Composer

```
$ composer require jeroenherczeg/hyena
```

Next, you must install the service provider:

```
// config/app.php
'providers' => [
    ...
    Jeroenherczeg\Hyena\HyenaServiceProvider::class,
];
```

And add facade:

```
// config/app.php
'aliases' => [
    ...
    Jeroenherczeg\Hyena\Facades\Hyena::class,
];
```

Usage
-----

[](#usage)

```
$result = Hyena::visit('https://github.com')->extract(['name', 'images']);
$result = Hyena::visit('https://github.com')->extract(['name', 'images'], [
    'min_image_width'    => 50, // optional, minimal width of picture in px
    'min_image_height'   => 50, // optional, minimal height of picture in px
    'min_image_filesize' => 16000, // optional, minimal filesize of picture in bytes
    'limit_images'       => 10  // optional, max count of images to return
]);
```

```
[
  'name' => 'Github',
  'images' => [
    'https://avatars1.githubusercontent.com/u/759412?v=3&s=40',
    'https://assets-cdn.github.com/images/spinners/octocat-spinner-128.gif',
    'https://assets-cdn.github.com/images/spinners/octocat-spinner-32.gif'
  ]
]
```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Jeroen Herczeg](https://github.com/jeroenherczeg)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~4 days

Total

2

Last Release

3594d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/759412?v=4)[Jeroen Herczeg](/maintainers/jeroenherczeg)[@jeroenherczeg](https://github.com/jeroenherczeg)

---

Top Contributors

[![jeroenherczeg](https://avatars.githubusercontent.com/u/759412?v=4)](https://github.com/jeroenherczeg "jeroenherczeg (18 commits)")

---

Tags

jeroenherczeghyena

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/jeroenherczeg-hyena/health.svg)

```
[![Health](https://phpackages.com/badges/jeroenherczeg-hyena/health.svg)](https://phpackages.com/packages/jeroenherczeg-hyena)
```

###  Alternatives

[craftcms/cms

Craft CMS

3.6k3.6M2.9k](/packages/craftcms-cms)[spatie/laravel-export

Create a static site bundle from a Laravel app

672139.5k6](/packages/spatie-laravel-export)[sproutcms/cms

Enterprise content management and framework

242.2k4](/packages/sproutcms-cms)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

252.5k](/packages/eslazarev-wildberries-sdk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
