producttrap / producttrap
A driver-based product info scraping library for PHP
Requires
- php: ^8.1
- guzzlehttp/guzzle: ^7.5
- illuminate/contracts: ^9.34
- illuminate/support: ^9.34
- nunomaduro/larastan: ^2.2.1
- spatie/data-transfer-object: ^3.9.1
- spatie/laravel-package-tools: ^1.13.6
- symfony/dom-crawler: ^6.1.4
Requires (Dev)
- laravel/pint: ^1.2
- orchestra/testbench: ^7.9
- pestphp/pest: ^1.22.1
- phpstan/phpstan: ^1.8.8
- symfony/var-dumper: ^6.1.5
This package is auto-updated.
Last update: 2023-11-27 14:54:29 UTC
README
A driver-based product info scraping library for PHP
Install
Via Composer
composer require producttrap/producttrap
Usage
You will need to configure a default driver, along with your ProductTrap drivers in the config/producttrap.php file.
use ProductTrap\ProductTrap; /** @var ProductTrap $productTrap */ $productTrap = $this->app->make(ProductTrap::class); // Add additional drivers $productTrap->extend('my_driver', function () { return new MyDriver(); }); // Retrieve a specific driver $productTrap->driver('name'); // Call `find()` on a driver $productTrap->driver('name')->find('abcdefg'); // Call `find()` on the default driver $productTrap->find('abcdefg');
Using the Facade
use ProductTrap\Facades\ProductTrap; // Using the default driver with the facade ProductTrap::find('ABCDEFG12345'); // Using a specific driver with the facade ProductTrap::driver('target_australia')->find('194353456');
Change log
Please see CHANGELOG for more information on what has changed recently.
Testing
composer test
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email security@voke.dev instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Treeware
You're free to use this package, but if it makes it to your production environment you are required to buy the world a tree.
It’s now common knowledge that one of the best tools to tackle the climate crisis and keep our temperatures from rising above 1.5C is to plant trees. If you support this package and contribute to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.
You can buy trees here.
Read more about Treeware at treeware.earth.