PHPackages                             dgvai/larataller - 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. dgvai/larataller

ActiveComposer-dependency[Utility &amp; Helpers](/categories/utility)

dgvai/larataller
================

A stand-alone laravel application installer package.

1.0.0(6y ago)436MITPHP

Since May 2Pushed 5y ago1 watchersCompare

[ Source](https://github.com/dgvai/larataller)[ Packagist](https://packagist.org/packages/dgvai/larataller)[ RSS](/packages/dgvai-larataller/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

Larataller - A Minimalist Laravel Installer Package
===================================================

[](#larataller---a-minimalist-laravel-installer-package)

[![Latest Stable Version](https://camo.githubusercontent.com/32d6494fcb6630f2b31015d4977f0f7fb3f9b1cb61a48e3132bcf130acbb5657/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726174616c6c65722f762f737461626c65)](https://packagist.org/packages/dgvai/larataller)[![Total Downloads](https://camo.githubusercontent.com/efe8f13a481eb4225f9c5bf49f49f8e23f4e7554bc92abf73c6e9695cf73ed2a/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726174616c6c65722f646f776e6c6f616473)](https://packagist.org/packages/dgvai/larataller)[![Latest Unstable Version](https://camo.githubusercontent.com/f43df0ef691d5d48fc039b10e8b8bb5983da694f47e6451f625c42662f841683/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726174616c6c65722f762f756e737461626c65)](https://packagist.org/packages/dgvai/larataller)[![License](https://camo.githubusercontent.com/2d14bd3be9235deea6a78ae9e13964888dbd2cebc8cf39257707dbe6da2d6303/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726174616c6c65722f6c6963656e7365)](https://packagist.org/packages/dgvai/larataller)[![Monthly Downloads](https://camo.githubusercontent.com/2a62741e16179952aefbe93413f572a4c5b596cc72d712b3730bee7303c0d470/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726174616c6c65722f642f6d6f6e74686c79)](https://packagist.org/packages/dgvai/larataller)[![Daily Downloads](https://camo.githubusercontent.com/c73a5ca9f60f6afc49a907e47d5a6b4aacbc2e7cd2cce2a963d18dfe28d27ea6/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726174616c6c65722f642f6461696c79)](https://packagist.org/packages/dgvai/larataller)[![composer.lock](https://camo.githubusercontent.com/7578f04c8cc3a556bbbbe6f5da73c9d5cd8b48707af510419071ac2de42fd7e4/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726174616c6c65722f636f6d706f7365726c6f636b)](https://packagist.org/packages/dgvai/larataller)

The installer package you need for your laravel application in release field. The simplest, minimalistic installer for your application. Works on any laravel version!

Contents
--------

[](#contents)

- [Larataller - A Minimalist Laravel Installer Package](#larataller---a-minimalist-laravel-installer-package)
    - [Contents](#contents)
    - [Installation](#installation)
        - [Publish Configuration](#publish-configuration)
        - [Setup and configure](#setup-and-configure)
    - [Usage](#usage)
        - [Additional Notes](#additional-notes)
    - [Examples](#examples)
    - [Advanced Usage](#advanced-usage)
    - [Changelog](#changelog)
    - [License](#license)

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

[](#installation)

You can install the package via composer:

```
    composer require dgvai/larataller
```

### Publish Configuration

[](#publish-configuration)

Publish configuration file

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

**For users bellow laravel &lt; 5.5**Add service provider to config/app.php

```
    "DGvai\Larataller\LaratallerServiceProvider"
```

### Setup and configure

[](#setup-and-configure)

The installer configuration is the only major work for this package. So follow carefully this step.
The configuration file `config/larataller.php` comes with some installation properties. The properties are also well documented in the comment of the file. Also, a brief description is given here:

```
    'php' => [

            /**
             * MINIMUM PHP VERSION
             * --------------------------------------
             * Define the minimum php verison
             * required for you application
             *
             */

            'min' => '7.3.0',

            /**
             * REQUIRED PHP EXTENSIONS
             * --------------------------------------
             * Define here which extensions are
             * required for your application.
             *
             */

            'exts' => ['tokenizer','json'],
        ],

        /**
         * REQUIRED APACHE MODULES
         * --------------------------------------
         * Define here which modules are
         * required for your application.
         *
         */

        'apache' => [
            'mods' => ['mod_rewrite'],
        ],

        /**
         * CHECK FOR SYMLINK
         * --------------------------------------
         * If your migration contains the artisan
         * command of storage:link , or any
         * symbolic link operation, then you
         * might need to check if your hosting/system
         * service supports creating symlinks
         *
         */

        'symlink' => false,

        /**
         * PERFORM MIGRATION?
         * --------------------------------------
         * Does you application runs migration
         * to setup your database?
         *
         */

        'migration' => true,

        /**
         * SQL FILE NAME
         * --------------------------------------
         * If your application does not use
         * migration to setup db, and you want
         * to use .sql file to upload to DB
         * to setup, define its name here.
         *
         * It should be placed inside public_path
         *    public_path().'/install/mysqlsite_db.sql'
         *
         *
         * example: 'sql' => 'mysqlsite_db.sql'
         *
         */

        'sql' => null,

        /**
         * EXTRA ENV DATA
         * --------------------------------------
         * If you want to setup some more
         * env attribute during setup time,
         * place them bellow here.
         *
         */

        'extra' => [
            [
                'key' => 'ENV_KEY_NAME',
                'title' => 'Title For The Key'
            ]
        ],

        /**
         * COMPLETE INSTALLATION REDIRECT
         * --------------------------------------
         * Redirect after completing the
         * installation.
         * Provide route() name here.
         *
         * example: home.dashboard
         */

        'redirect' => null,
```

After done configuraing

```
    php artisan config:cache
```

Usage
-----

[](#usage)

- Install this package
- Keep a skeleton .env file with an initial `APP_KEY` Generated
- Browse `yoursite.com/install` to get started.

### Additional Notes

[](#additional-notes)

- You do not need to delete any file or uninstall the package after installation, it's middleware protected
- If you want to change the APP\_KEY after installation, keep a migration with `Artisan::call('key:generate')`
- Installer setup is always developer-end work, so be sure your migration runs without any bug normally. A developer can manually check the migration from fresh terminal install, even the installer give the migration output, the user can not debug your migration errors. So before applying installer, be sure about your migrations.

Examples
--------

[](#examples)

[![Larataller | Step 1](examples/step1.png)](examples/step1.png)[![Larataller | Step 2](examples/step2.png)](examples/step2.png)[![Larataller | Step 3](examples/step3.png)](examples/step3.png)[![Larataller | Step 4](examples/step4.png)](examples/step4.png)

Advanced Usage
--------------

[](#advanced-usage)

Export the views to customize your design of installer! (If you wish to customize)

```
    php artisan vendor:publish --tag=larataller-views
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 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

Unknown

Total

1

Last Release

2199d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/53512998?v=4)[Jalal Uddin](/maintainers/dgvai)[@dgvai](https://github.com/dgvai)

---

Top Contributors

[![dgvai](https://avatars.githubusercontent.com/u/53512998?v=4)](https://github.com/dgvai "dgvai (5 commits)")

---

Tags

laravel-app-installerlaravel-installerlaravel-packagelaravel-web-installer

### Embed Badge

![Health badge](/badges/dgvai-larataller/health.svg)

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

###  Alternatives

[phmlabs/annovent

Simple lightweight event dispatcher using annotations for registering listeners

113.3k](/packages/phmlabs-annovent)

PHPackages © 2026

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