Skip to content

Commit 3df743f

Browse files
committed
build: changed the namespace from MangoDev into Promethys
1 parent 969ade9 commit 3df743f

File tree

13 files changed

+41
-41
lines changed

13 files changed

+41
-41
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: MangoDevMG
1+
github: Promethys

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Ask a question
4-
url: https://github.com/MangoDevMG/filament-revive/discussions/new?category=q-a
4+
url: https://github.com/Promethys/filament-revive/discussions/new?category=q-a
55
about: Ask the community for help
66
- name: Request a feature
7-
url: https://github.com/MangoDevMG/filament-revive/discussions/new?category=ideas
7+
url: https://github.com/Promethys/filament-revive/discussions/new?category=ideas
88
about: Share ideas for new features
99
- name: Report a security issue
10-
url: https://github.com/MangoDevMG/filament-revive/security/policy
10+
url: https://github.com/Promethys/filament-revive/security/policy
1111
about: Learn how to notify us for sensitive bugs

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) MangoDevMG <ilainiriko.tambaza@gmail.com>
3+
Copyright (c) Promethys <ilainiriko.tambaza@gmail.com>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
<!-- ![calendar Banner](https://github.com/MangoDevMG/filament-revive/tree/main/resources/imgs/banner.jpg) -->
1+
<!-- ![calendar Banner](https://github.com/Promethys/filament-revive/tree/main/resources/imgs/banner.jpg) -->
22

33
# Filament RecycleBin for Laravel Models
44

5-
[![Latest Version on Packagist](https://img.shields.io/packagist/v/mango/filament-revive.svg?style=flat-square)](https://packagist.org/packages/mangodev/filament-revive)
5+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/mango/filament-revive.svg?style=flat-square)](https://packagist.org/packages/promethys/filament-revive)
66
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/mango/filament-revive/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/mango/filament-revive/actions?query=workflow%3Arun-tests+branch%3Amain)
77
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/mango/filament-revive/fix-php-code-styling.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/mango/filament-revive/actions?query=workflow%3A"Fix+PHP+code+styling"+branch%3Amain)
8-
[![Total Downloads](https://img.shields.io/packagist/dt/mango/filament-revive.svg?style=flat-square)](https://packagist.org/packages/mangodev/filament-revive)
8+
[![Total Downloads](https://img.shields.io/packagist/dt/mango/filament-revive.svg?style=flat-square)](https://packagist.org/packages/promethys/filament-revive)
99

1010
**Filament Revive** is a plugin for [Filament](https://filamentphp.com) that brings a central **Recycle Bin** to your application. It lets you restore or permanently delete soft-deleted Eloquent models in just a few clicks.
1111

1212
This plugin is especially useful for SaaS applications, admin dashboards, or any multi-user platform where recovering accidentally deleted data is important.
1313

14-
![Preview Screenshot](https://github.com/MangoDevMG/filament-revive/tree/main/resources/imgs/preview.png)
15-
<!-- ![Preview Video](https://github.com/MangoDevMG/filament-revive/tree/main/resources/imgs/video-preview.mp4) -->
14+
![Preview Screenshot](https://github.com/Promethys/filament-revive/tree/main/resources/imgs/preview.png)
15+
<!-- ![Preview Video](https://github.com/Promethys/filament-revive/tree/main/resources/imgs/video-preview.mp4) -->
1616

1717
---
1818

@@ -30,7 +30,7 @@ This plugin is especially useful for SaaS applications, admin dashboards, or any
3030
Install the package via Composer:
3131

3232
```bash
33-
composer require mangodev/filament-revive
33+
composer require promethys/filament-revive
3434
php artisan filament-revive:install
3535
```
3636

@@ -48,7 +48,7 @@ php artisan migrate
4848
Register the plugin in your panel:
4949

5050
```php
51-
use MangoDev\FilamentRevive\FilamentRevivePlugin;
51+
use Promethys\FilamentRevive\FilamentRevivePlugin;
5252

5353
$panel->plugins([
5454
FilamentRevivePlugin::make()
@@ -58,7 +58,7 @@ $panel->plugins([
5858
You can also customize the plugin using fluent configuration:
5959

6060
```php
61-
use MangoDev\FilamentRevive\FilamentRevivePlugin;
61+
use Promethys\FilamentRevive\FilamentRevivePlugin;
6262

6363
$panel->plugins([
6464
FilamentRevivePlugin::make()
@@ -79,7 +79,7 @@ $panel->plugins([
7979
```php
8080
namespace App\MyCoolApp\Custom\Models;
8181

82-
use MangoDev\FilamentRevive\Traits\Recyclable;
82+
use Promethys\FilamentRevive\Traits\Recyclable;
8383
use Vendor\Package\Models\Foo as BaseFoo;
8484

8585
class Foo extends BaseFoo
@@ -98,7 +98,7 @@ From there, users can restore deleted data or permanently remove it.
9898
### 1. Add the `Recyclable` trait to any soft-deletable model
9999

100100
```php
101-
use MangoDev\FilamentRevive\Concerns\Recyclable;
101+
use Promethys\FilamentRevive\Concerns\Recyclable;
102102

103103
class Post extends Model
104104
{
@@ -128,7 +128,7 @@ You don’t have to register the plugin in your panel to use the table.
128128
Instead, you can render the Livewire component directly in a Blade view:
129129

130130
```php
131-
@livewire(\MangoDev\FilamentRevive\Tables\RecycleBin::class)
131+
@livewire(\Promethys\FilamentRevive\Tables\RecycleBin::class)
132132
```
133133

134134
This is ideal if:
@@ -151,7 +151,7 @@ See [CONTRIBUTING](.github/CONTRIBUTING.md) for guidelines.
151151

152152
## Credits
153153

154-
- [Ilainiriko Tambaza](https://github.com/MangoDevMG)
154+
- [Ilainiriko Tambaza](https://github.com/Promethys)
155155
- [mintellity/laravel-recycle-bin](https://github.com/mintellity/laravel-recycle-bin) — inspiration for this package
156156
- [All Contributors](../../contributors)
157157

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"name": "mangodev/filament-revive",
2+
"name": "promethys/filament-revive",
33
"description": "A 'RecycleBin' page where users can restore or delete permanently soft-deleted models.",
44
"keywords": [
5-
"MangoDev",
5+
"Promethys",
66
"laravel",
77
"filament-revive",
88
"RecycleBin",
99
"filament"
1010
],
11-
"homepage": "https://github.com/MangoDevMG/filament-revive",
11+
"homepage": "https://github.com/Promethys/filament-revive",
1212
"support": {
13-
"issues": "https://github.com/MangoDevMG/filament-revive/issues",
14-
"source": "https://github.com/MangoDevMG/filament-revive"
13+
"issues": "https://github.com/Promethys/filament-revive/issues",
14+
"source": "https://github.com/Promethys/filament-revive"
1515
},
1616
"license": "MIT",
1717
"authors": [
@@ -45,12 +45,12 @@
4545
},
4646
"autoload": {
4747
"psr-4": {
48-
"MangoDev\\FilamentRevive\\": "src/"
48+
"Promethys\\FilamentRevive\\": "src/"
4949
}
5050
},
5151
"autoload-dev": {
5252
"psr-4": {
53-
"MangoDev\\FilamentRevive\\Tests\\": "tests/"
53+
"Promethys\\FilamentRevive\\Tests\\": "tests/"
5454
}
5555
},
5656
"scripts": {
@@ -70,10 +70,10 @@
7070
"extra": {
7171
"laravel": {
7272
"providers": [
73-
"MangoDev\\FilamentRevive\\FilamentReviveServiceProvider"
73+
"Promethys\\FilamentRevive\\FilamentReviveServiceProvider"
7474
],
7575
"aliases": {
76-
"FilamentRevive": "MangoDev\\FilamentRevive\\Facades\\FilamentRevive"
76+
"FilamentRevive": "Promethys\\FilamentRevive\\Facades\\FilamentRevive"
7777
}
7878
}
7979
},

src/Concerns/Recyclable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace MangoDev\FilamentRevive\Concerns;
3+
namespace Promethys\FilamentRevive\Concerns;
44

55
use Carbon\Carbon;
66
use Illuminate\Database\Eloquent\Builder;
7-
use MangoDev\FilamentRevive\Models\RecycleBinItem;
7+
use Promethys\FilamentRevive\Models\RecycleBinItem;
88
use Illuminate\Database\Eloquent\Relations\MorphOne;
99

1010
trait Recyclable

src/FilamentRevivePlugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

3-
namespace MangoDev\FilamentRevive;
3+
namespace Promethys\FilamentRevive;
44

55
use Closure;
66
use Filament\Contracts\Plugin;
77
use Filament\FilamentManager;
88
use Filament\Panel;
99
use Filament\Support\Concerns\EvaluatesClosures;
1010
use Livewire\Component;
11-
use MangoDev\FilamentRevive\Pages\RecycleBin;
11+
use Promethys\FilamentRevive\Pages\RecycleBin;
1212

1313
class FilamentRevivePlugin implements Plugin
1414
{

src/FilamentReviveServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace MangoDev\FilamentRevive;
3+
namespace Promethys\FilamentRevive;
44

55
use Filament\Support\Assets\Asset;
66
use Filament\Support\Facades\FilamentAsset;
@@ -52,7 +52,7 @@ public function packageBooted(): void
5252
$this->getAssetPackageName()
5353
);
5454

55-
Livewire::component('filament-revive.tables.recycle-bin', \MangoDev\FilamentRevive\Tables\RecycleBin::class);
55+
Livewire::component('filament-revive.tables.recycle-bin', \Promethys\FilamentRevive\Tables\RecycleBin::class);
5656
}
5757

5858
protected function getAssetPackageName(): ?string

src/Models/RecycleBinItem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace MangoDev\FilamentRevive\Models;
3+
namespace Promethys\FilamentRevive\Models;
44

55
use Illuminate\Database\Eloquent\Model;
66
use Illuminate\Database\Eloquent\Relations\MorphTo;

src/Pages/RecycleBin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace MangoDev\FilamentRevive\Pages;
3+
namespace Promethys\FilamentRevive\Pages;
44

55
use Filament\Pages\Page;
6-
use MangoDev\FilamentRevive\FilamentRevivePlugin;
6+
use Promethys\FilamentRevive\FilamentRevivePlugin;
77

88
class RecycleBin extends Page
99
{

0 commit comments

Comments
 (0)