PHPackages                             appdigidelete/account-deletion - 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. appdigidelete/account-deletion

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

appdigidelete/account-deletion
==============================

A Composer package that simplifies account deletion by providing a pre-built form to delete users via email, automating the entire process for developers

v1.0.0(1y ago)04MITPHP

Since Dec 3Pushed 1y agoCompare

[ Source](https://github.com/digimantra/digi-delete-user)[ Packagist](https://packagist.org/packages/appdigidelete/account-deletion)[ RSS](/packages/appdigidelete-account-deletion/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

Laravel Delete App Users
========================

[](#laravel-delete-app-users)

A Composer package that simplifies account deletion by providing a pre-built form to delete users via email, automating the process for developers.

[![Packagist Version](https://camo.githubusercontent.com/ce304eedddd336fbaf6c38e47b4aff92350320bd5796b6e69c946c39282398f3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6170706469676964656c6574652f6163636f756e742d64656c6574696f6e)](https://camo.githubusercontent.com/ce304eedddd336fbaf6c38e47b4aff92350320bd5796b6e69c946c39282398f3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6170706469676964656c6574652f6163636f756e742d64656c6574696f6e)
[![Packagist Downloads](https://camo.githubusercontent.com/f1bddf6d1676919fdbcb8b03b14968d2e1863e04cac3c3f47506be9bf5f7f07c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6170706469676964656c6574652f6163636f756e742d64656c6574696f6e)](https://camo.githubusercontent.com/f1bddf6d1676919fdbcb8b03b14968d2e1863e04cac3c3f47506be9bf5f7f07c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6170706469676964656c6574652f6163636f756e742d64656c6574696f6e)
[![GitHub License](https://camo.githubusercontent.com/52c7d718c0f07fac28f6db255af4f7a19bb9aa835dad5da53e57ad95ad10ed9a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6170706469676964656c6574652f6163636f756e742d64656c6574696f6e3f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/52c7d718c0f07fac28f6db255af4f7a19bb9aa835dad5da53e57ad95ad10ed9a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6170706469676964656c6574652f6163636f756e742d64656c6574696f6e3f7374796c653d666c61742d737175617265)

---

Table of Contents
-----------------

[](#table-of-contents)

- [Requirements](#requirements)
- [Installation](#installation)
- [Configuration](#configuration)
    - [SMTP Settings](#update-smtp-settings)
    - [Queue Configuration](#configure-the-queue)
- [Usage](#usage)
- [Database Setup](#database-setup)
- [License](#license)
- [Support](#support)

---

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

[](#requirements)

- **PHP** &gt;= 8.0
- **Laravel** 8, 9, or 10

---

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

[](#installation)

Run the following command to install the package:

```
composer require appdigidelete/account-deletion
```

---

Configuration
-------------

[](#configuration)

### Database Configuration

[](#database-configuration)

Ensure your database is configured correctly in your `.env` file:

```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database
DB_USERNAME=your_username
DB_PASSWORD=your_password
```

Add the following keys for user tables:

```
'user_table' => env('USER_TABLE', 'existing_users'),
'deleted_users_table' => env('DELETED_USERS_TABLE', 'deleted_users'),
```

---

### Update SMTP Settings

[](#update-smtp-settings)

Modify your `.env` file to include your SMTP credentials:

```
MAIL_MAILER=smtp
MAIL_HOST=smtp.yourservice.com
MAIL_PORT=587
MAIL_USERNAME=your_email@domain.com
MAIL_PASSWORD=your_password
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=your_email@domain.com
```

**Important:** Clear the configuration cache:

```
php artisan config:clear
php artisan view:clear
```

---

### Configure the Queue

[](#configure-the-queue)

Ensure you have set up the queue configuration in `config/queue.php`. For the database driver, run the migration to create the `jobs` table:

```
php artisan queue:table
php artisan migrate
```

---

Usage
-----

[](#usage)

This package relies on the following Laravel components:

- **illuminate/support** for Laravel framework integration
- **illuminate/mail** for email functionality

---

Database Setup
--------------

[](#database-setup)

Ensure your database has the required tables:

- **Existing Users Table**: Default `existing_users`
- **Deleted Users Table**: Default `deleted_users`

If the package includes migrations, publish and run them:

```
php artisan migrate
```

When a user is deleted, all their data will be transferred to the `deleted_users` table.

---

License
-------

[](#license)

This package is released under the MIT License. Refer to the [LICENSE](./LICENSE) file for details.

---

Support
-------

[](#support)

For support or more details, reach out at:

**Email**:

---

This version improves readability, fixes formatting issues, and provides a clear structure for users to understand and implement the package.

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance39

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

 Bus Factor1

Top contributor holds 60% 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

Unknown

Total

1

Last Release

523d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b0915329748e0b3b6062e1a0110cd94552cd90313a133a087510813a6734fb92?d=identicon)[hs-dml](/maintainers/hs-dml)

---

Top Contributors

[![lakshyarana17](https://avatars.githubusercontent.com/u/171010434?v=4)](https://github.com/lakshyarana17 "lakshyarana17 (6 commits)")[![rishab-php-digi](https://avatars.githubusercontent.com/u/91057086?v=4)](https://github.com/rishab-php-digi "rishab-php-digi (3 commits)")[![Onkar-php-digi](https://avatars.githubusercontent.com/u/112922041?v=4)](https://github.com/Onkar-php-digi "Onkar-php-digi (1 commits)")

### Embed Badge

![Health badge](/badges/appdigidelete-account-deletion/health.svg)

```
[![Health](https://phpackages.com/badges/appdigidelete-account-deletion/health.svg)](https://phpackages.com/packages/appdigidelete-account-deletion)
```

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M684](/packages/barryvdh-laravel-ide-helper)[orchestra/canvas

Code Generators for Laravel Applications and Packages

21017.2M157](/packages/orchestra-canvas)[illuminate/pipeline

The Illuminate Pipeline package.

9446.6M210](/packages/illuminate-pipeline)[illuminate/pagination

The Illuminate Pagination package.

10532.5M858](/packages/illuminate-pagination)[spatie/laravel-pjax

A pjax middleware for Laravel 5

513371.8k11](/packages/spatie-laravel-pjax)[spatie/laravel-mix-preload

Add preload and prefetch links based your Mix manifest

169176.0k2](/packages/spatie-laravel-mix-preload)

PHPackages © 2026

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