PHPackages                             iqbalatma/laravel-export-import - 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. [File &amp; Storage](/categories/file-storage)
4. /
5. iqbalatma/laravel-export-import

ActiveLibrary[File &amp; Storage](/categories/file-storage)

iqbalatma/laravel-export-import
===============================

1.5.0(1mo ago)0265MITPHP

Since Aug 31Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/iqbalatma/laravel-export-import)[ Packagist](https://packagist.org/packages/iqbalatma/laravel-export-import)[ RSS](/packages/iqbalatma-laravel-export-import/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)DependenciesVersions (14)Used By (0)

Laravel Export Import
=====================

[](#laravel-export-import)

A simple and extensible Laravel package for handling **large data exports and imports** using a **queue-based architecture**.

This package is designed to export and import large datasets efficiently while keeping **memory usage low** by leveraging Laravel's `LazyCollection` and queued jobs.

---

Features
--------

[](#features)

- Queue based export and import jobs
- Memory efficient processing using `LazyCollection`
- CSV export support
- Extensible architecture using abstract classes
- Automatic temporary file handling
- Configurable filesystem disk support
- Designed for large datasets

---

Requirements
------------

[](#requirements)

- PHP &gt;= 8.3
- Laravel &gt;= 10

---

Installation
============

[](#installation)

Install the package via Composer.

```
composer require iqbalatma/laravel-export-import
```

Publish the configuration file:

```
php artisan vendor:publish --tag=export-import-config
```

Publish migrations:

```
php artisan vendor:publish --tag=migrations
```

Run migrations:

```
php artisan migrate
```

---

Configuration
=============

[](#configuration)

After publishing, the configuration file will be available at:

```
config/export_import.php

```

Example configuration:

```
