PHPackages                             codersgift/installer - 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. codersgift/installer

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

codersgift/installer
====================

This package work for laravel installer, for install any application

02Blade

Since Oct 14Pushed 1y ago1 watchersCompare

[ Source](https://github.com/sm-jahangir/installer-package)[ Packagist](https://packagist.org/packages/codersgift/installer)[ RSS](/packages/codersgift-installer/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

[![Laravel Logo](https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg)](https://laravel.com)

[![Build Status](https://github.com/laravel/framework/workflows/tests/badge.svg)](https://github.com/laravel/framework/actions)[![Total Downloads](https://camo.githubusercontent.com/b0a7ee2f3f0208712ecb1081b9d6fcf05045c10cd6f345abcb924f5512c0d346/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c61726176656c2f6672616d65776f726b)](https://packagist.org/packages/laravel/framework)[![Latest Stable Version](https://camo.githubusercontent.com/9e6071b5dd1a4a3bcabe3cca9d97a447d030caeb940f2adbd18699bc0b326702/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c61726176656c2f6672616d65776f726b)](https://packagist.org/packages/laravel/framework)[![License](https://camo.githubusercontent.com/4a64c31c71966d152c876eea1f35e85fbd33d57ddf5754260a41f053aa72c5b2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6c61726176656c2f6672616d65776f726b)](https://packagist.org/packages/laravel/framework)

Laravel Installer package
-------------------------

[](#laravel-installer-package)

### Step - 1:

[](#step---1)

 env file add this code

```
APP_INSTALL=NO

```

### Step -2:

[](#step--2)

Add provider file
Laravel 11:
bootstrap/providers.php

Or

Laravel &lt; 11
config/app.php

Add this file

```
Codersgift\Installer\InstallerServiceProvider::class,

```

 Add this file for middleware working

```
Route::group(['middleware' => 'installed'], function () {
		Route::get('/', function () {
				return view('welcome');
		});

		Route::get('/hello-world', function () {
				return "Hello world page, finally done";
		})->name('helloworld');
});

```

### Step - 3: (This is Option ) - Use it if you are using this package in root folder

[](#step---3-this-is-option----use-it-if-you-are-using-this-package-in-root-folder)

composer.json file

```
"autoload-dev": {
		"psr-4": {
		"Tests\\": "tests/",
		"Codersgift\\Installer\\": "package/Installer/src/"
		}
},

```

### Step - 3: Publish the Assets

[](#step---3-publish-the-assets)

php artisan vendor:publish --tag=installer-assets
This will copy the assets to public/install/css.

### Step - 4 : if you choose fresh data you have the available Setting model

[](#step---4--if-you-choose-fresh-data-you-have-the-available-setting-model)

Step for fresh data
The user create so user table

```
$table->foreignId('role_id')->default(2);
$table->boolean('status')->default(false);

```

###  Health Score

14

—

LowBetter than 2% of packages

Maintenance29

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity17

Early-stage or recently created project

 Bus Factor1

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

### Community

Maintainers

![](https://www.gravatar.com/avatar/da3e3997c839e1a2555f84b68bb4cb6922f3ab66990e6b9f991991c982564ad7?d=identicon)[sm-jahangir](/maintainers/sm-jahangir)

---

Top Contributors

[![sm-jahangir](https://avatars.githubusercontent.com/u/61391090?v=4)](https://github.com/sm-jahangir "sm-jahangir (5 commits)")

### Embed Badge

![Health badge](/badges/codersgift-installer/health.svg)

```
[![Health](https://phpackages.com/badges/codersgift-installer/health.svg)](https://phpackages.com/packages/codersgift-installer)
```

###  Alternatives

[psr/event-dispatcher

Standard interfaces for event handling.

2.3k618.8M865](/packages/psr-event-dispatcher)[symfony/maker-bundle

Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.

3.4k111.1M568](/packages/symfony-maker-bundle)

PHPackages © 2026

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