imamuseum / harvester
Online collection data harvester middleware.
Installs: 28
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 5
Forks: 1
Open Issues: 0
pkg:composer/imamuseum/harvester
Requires
- php: >=5.5.9
- illuminate/support: 5.2.*
- jeremytubbs/deepzoom: 0.5.*
This package is not auto-updated.
Last update: 2025-09-28 00:56:04 UTC
README
##Harvester Package
###Composer Setup
"require": { "imamuseum/harvester": "^2.0" },
Service Provider
In config/app.php
add to the autoloaded providers -
Imamuseum\Harvester\HarvesterServiceProvider::class,
Add ExampleHarvester to app/Providers/AppServiceProvider.php
to implement the HarvesterInterface.
public function register() { $this->app->bind('Imamuseum\Harvester\Contracts\HarvesterInterface', 'Imamuseum\Harvester\ExampleHarvester'); }
Now you can publish the package -
php artisan vendor:publish
Run Migrations -
php artisan migrate
Run an initial sync with fake data -
php artisan harvest:collection --initial
Push items off the queue -
php artisan queue:listen
Artisan Commands
php artisan harvest:collection php artisan harvest:object php artisan harvest:maintain
Use the --help flag after any command to view the available options with a description.
License
The Laravel framework is open-sourced software licensed under the MIT license.