Download the PHP package zappzerapp/laravel-ingest without Composer

On this page you can find all versions of the php package zappzerapp/laravel-ingest. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-ingest

Laravel Ingest Banner

Latest Version Total Downloads Build Status Documentation


Stop writing spaghetti code for imports.

Laravel Ingest is a robust, configuration-driven ETL (Extract, Transform, Load) framework for Laravel. It replaces fragile, procedural import scripts with elegant, declarative configuration classes.

Whether you are importing 100 rows or 10 million, Laravel Ingest handles the heavy lifting: streaming, chunking, queueing, validation, relationships, and error reporting.

⚑ Why use this?

Most import implementations suffer from the same issues: memory leaks, timeouts, lack of validation, and messy controllers.

Laravel Ingest solves this by treating imports as a first-class citizen:


πŸ“š Documentation

Full documentation is available at zappzerapp.github.io/laravel-ingest.


πŸš€ Quick Start

1. Installation

2. Define an Importer

Use the Artisan generator to scaffold a new importer:

Alternatively, create a class implementing IngestDefinition manually:

3. Register it

In App\Providers\AppServiceProvider:

4. Run it!

You can now trigger the import via CLI or API.

Via Artisan (Backend / Cron):

Via API (Frontend / Upload):


πŸ’‘ Demo Project

Want to see Laravel Ingest in action? Check out our Laravel Ingest Demo repository for a complete working example.


πŸ›  Features in Depth

Monitoring & Management

Ingest runs happen in the background. You can monitor and manage them easily:

Command Description
ingest:list Show all registered importers.
ingest:status {id} Show progress bar, stats, and errors for a run.
ingest:cancel {id} Stop a running import gracefully.
ingest:retry {id} Create a new run containing only the rows that failed previously.
ingest:prune-files Remove temporary import files older than the configured TTL.

API Endpoints

The package automatically exposes endpoints for building UI integrations (e.g., React/Vue progress bars).

Events

Hook into the lifecycle to send notifications (e.g., Slack) or trigger downstream logic.

Pruning

To keep your database clean, logs are prunable. Add this to your scheduler:


🧩 Configuration Reference

The IngestConfig fluent API handles complex scenarios with ease.

See the Documentation for all available methods.


✨ Advanced Features

Beyond the basics, Laravel Ingest supports advanced capabilities for complex import scenarios:


πŸ§ͺ Testing

We provide a Docker-based test environment to ensure consistency.


🀝 Contributing

We welcome contributions! Please see CONTRIBUTING.md for details.

πŸ“„ License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-ingest with dependencies

PHP Build Version
Package Version
Requires php Version ^8.3
ext-fileinfo Version *
ext-json Version *
halaxa/json-machine Version ^1.2
illuminate/contracts Version ^10.0 || ^11.0 || ^12.0 || ^13.0
illuminate/database Version ^10.0 || ^11.0 || ^12.0 || ^13.0
illuminate/filesystem Version ^10.0 || ^11.0 || ^12.0 || ^13.0
illuminate/http Version ^10.0 || ^11.0 || ^12.0 || ^13.0
illuminate/queue Version ^10.0 || ^11.0 || ^12.0 || ^13.0
illuminate/support Version ^10.0 || ^11.0 || ^12.0 || ^13.0
illuminate/validation Version ^10.0 || ^11.0 || ^12.0 || ^13.0
laravel/serializable-closure Version ^1.3|^2.0
spatie/simple-excel Version ^3.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package zappzerapp/laravel-ingest contains the following files

Loading the files please wait ...