PHPackages                             weblabormx/scrapping-plus - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. weblabormx/scrapping-plus

AbandonedArchivedLibrary[Utility &amp; Helpers](/categories/utility)

weblabormx/scrapping-plus
=========================

Package for making scrapping with different drivers and one format.

v1.0.10(2y ago)24.7kMITPHPPHP &gt;=7.1

Since Aug 26Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/weblabormx/Scrapping-Plus)[ Packagist](https://packagist.org/packages/weblabormx/scrapping-plus)[ Docs](https://github.com/weblabormx/scrapping-plus)[ RSS](/packages/weblabormx-scrapping-plus/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (6)Versions (13)Used By (0)

Scrapping Plus
==============

[](#scrapping-plus)

Laravel package for scrapping with different drivers.

This package will help you for scrapping any website, even the ones done completly by javascript. This is done thanks the different drivers that handles the scrapping.

In this package we use the next drivers

- Parser (paquettg/php-html-parser)
- Laravel Dusk (laravel/dusk)
- Voku (voku/simple\_html\_dom)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require weblabormx/scrapping-plus
```

Usage
-----

[](#usage)

For using the Parser one you need to execute something like this.

```
use WeblaborMX\ScrappingPlus\Scrapping;

// Using html directly
$scrapper = Scrapping::fromHtml('HolaExcerpt');
$h1 = $scrapper->first('h1');
$text = $h1->getText(); // Hola

// Get it from an URL
$google = Scrapping::scrappe('https://www.google.com.mx');
$html = $google->getHtml();

// Access inputs
$inputs = $google->get('input');
$this->assertEquals(5, $inputs->count());

$first = $inputs->first();
$second = $inputs[1];

$class = $google->first('input[name=btnI]');
$title = $class->getAttribute('value');
```

And if you want to execute it with laravel dusk you just need to execute something like this:

```
$page = Scrapping::method('dusk')->scrappe($url);
$page->object->waitForText($text); // How to use laravel dusk functions directly
$page = $page->toParser(); // Convert to the parser driver
```

The list of functions that every driver has are the next ones:

- `get($selector)`
- `getHtml`
- `getAttribute($name)`
- `getLink`
- `getText`

### Testing

[](#testing)

```
phpunit test
```

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

[](#contributing)

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

### Security

[](#security)

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

Emailware
---------

[](#emailware)

You're free to use this package, but if it makes it to your production environment we highly appreciate you sending an email with the url of the website in production to add it to our website

Our email address is:

We publish all received emails [on our company website](http://weblabor.mx).

Credits
-------

[](#credits)

- [Carlos Escobar](https://github.com/skalero01)
- [All Contributors](../../contributors)

Support us
----------

[](#support-us)

Weblabor is a web design agency based in México. You'll find an overview of all our open source projects [on our website](http://weblabor.mx).

Does your business depend on our contributions? Reach out and support us All pledges will be dedicated to allocating workforce on maintenance and new awesome stuff.

- Support us on Patreon -
- Support us with a Paypal donation -

License
-------

[](#license)

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

###  Health Score

41

—

FairBetter than 87% of packages

Maintenance57

Moderate activity, may be stable

Popularity21

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity64

Established project with proven stability

 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 ~213 days

Recently: every ~337 days

Total

11

Last Release

737d ago

PHP version history (2 changes)v1.0PHP ^7.1

v1.0.9PHP &gt;=7.1

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/13341096?v=4)[Weblabor](/maintainers/weblabormx)[@weblabormx](https://github.com/weblabormx)

---

Top Contributors

[![skalero01](https://avatars.githubusercontent.com/u/2976641?v=4)](https://github.com/skalero01 "skalero01 (17 commits)")

---

Tags

weblabormxscrapping-plus

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/weblabormx-scrapping-plus/health.svg)

```
[![Health](https://phpackages.com/badges/weblabormx-scrapping-plus/health.svg)](https://phpackages.com/packages/weblabormx-scrapping-plus)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[renatomarinho/laravel-page-speed

Laravel Page Speed

2.5k1.7M11](/packages/renatomarinho-laravel-page-speed)[illuminate/pagination

The Illuminate Pagination package.

12234.1M1.0k](/packages/illuminate-pagination)[illuminate/pipeline

The Illuminate Pipeline package.

9349.2M282](/packages/illuminate-pipeline)[illuminate/redis

The Illuminate Redis package.

8314.6M375](/packages/illuminate-redis)[illuminate/cookie

The Illuminate Cookie package.

244.6M136](/packages/illuminate-cookie)

PHPackages © 2026

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