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

ActiveLibrary

bestmomo/laravel-installer
==========================

Helper for Laravel 5.2 application installation

V0.1.1(10y ago)163.4k↓100%5MITPHP

Since Feb 12Pushed 9y ago7 watchersCompare

[ Source](https://github.com/bestmomo/laravel-installer)[ Packagist](https://packagist.org/packages/bestmomo/laravel-installer)[ Docs](http://github.com/bestmomo/laravel-installer)[ RSS](/packages/bestmomo-laravel-installer/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)DependenciesVersions (3)Used By (0)

Laravel Installer
-----------------

[](#laravel-installer)

For Laravel 5.3 look at [this repository](https://github.com/bestmomo/laravel5-3-installer).

There is already [a helper package](https://github.com/RachidLaasri/LaravelInstaller) for Laravel application installation. It's great but is not what I need because final people are not developpers and they must have informations that they can understand. On the other hand I think it's usefull to manage the possibility to register an administrator in the installation phase.

So I have developed this alternative package with final user in mind.

There is a (french) presentation [there](http://laravel.sillo.org/un-installateur-pour-application-laravel-5-2/).

### Features

[](#features)

- point base url to installator route
- check PHP version
- check folders permissions
- check server requirements
- allow application publication
- get the database settings with a form
- migrate the database
- seed the database (if needed)
- optionaly get basic informations (set in config) for administrator creation with a form
- allow saving complementary informations fo administrator (for example roles)
- set an unique security key for application
- remove service provider reference in config to delete the installation stuff

### Installation

[](#installation)

Add Installer to your composer.json file to require it :

```
    require : {
        ...
        "bestmomo/laravel-installer": "0.1.*"
    }

```

Update Composer :

```
    composer update

```

The next required step is to add the service provider to config/app.php :

```
    Bestmomo\Installer\InstallerServiceProvider::class,

```

### Publish

[](#publish)

The last required step is to publish views, translations and configuration in your application with :

```
    php artisan vendor:publish

```

### Configuration

[](#configuration)

Views
-----

[](#views)

View are in `resources/views/vendor/installer`, you can customize them as you want.

Translations
------------

[](#translations)

Translations are in `resources/lang/*` in `installer.php` file. You can customize them as you want and add other languages (default are only `en` and `fr`).

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

[](#configuration-1)

Configuration is in `config/installer.php` :

- ***Application name*** : the name of the application
- ***Application version*** : the version number of the application
- ***PHP version*** : you can set newer version if you need for your application (dont forget to update lang files too)
- ***Server requirements*** : add other requirements if you need for your application
- ***Permissions*** : add other permissions if you need for your application
- ***Publish path*** : if you have to publish directories and files set the path (default is `null`). For example you have a `blog` directory with folders, subfolders and files at the root, set this value :

```
  'publish-path' => base_path('blog'),

```

Take care that any file with same name will be changed for the new one.

- ***Login url*** : set the login url for button at the end of installation
- ***Administrator*** : set `true` if you want administrator creation with installation. Set also the `fields` if default values dont suit. But take care that these fields must fit the `create` method of AuthController (or your form request) because package uses this method to create the administrator. If you use form request for validation set it in **validator** configuration. If you use a custom creator method set it in **creator** configuration.

To add other informations to administrator as roles you can create this method in AuthController :

```
protected function userAddValues(User $user)
{
    // Add elements to administrator record there
}

```

The user model is provided as method parameter so you can easily set a query.

Todo list
---------

[](#todo-list)

- Screenshots

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity29

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity64

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~1 days

Total

2

Last Release

3740d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/db8c99e19bcb8c0855b62163521c90217dc197414d90802db0965cb422085645?d=identicon)[bestmomo](/maintainers/bestmomo)

---

Top Contributors

[![bestmomo](https://avatars.githubusercontent.com/u/2959682?v=4)](https://github.com/bestmomo "bestmomo (11 commits)")

### Embed Badge

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

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

PHPackages © 2026

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