caydeesoft/installer

WordPress-style installer and plugin installer feature pack for Laravel

Maintainers

Package info

github.com/Caydeesoft/Installer

pkg:composer/caydeesoft/installer

Statistics

Installs: 3

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.5 2026-05-11 23:44 UTC

This package is auto-updated.

Last update: 2026-05-11 23:44:36 UTC


README

A WordPress-style installer and plugin installer feature pack for Laravel.

Description

This package provides a robust, WordPress-style installer and plugin installer feature pack specifically designed for Laravel applications. It aims to simplify the initial setup and ongoing management of plugins within your Laravel project, offering a familiar experience for developers accustomed to WordPress's extensibility.

Installation

You can install the package via Composer:

composer require caydeesoft/installer

Laravel Integration

For Laravel applications, the package will automatically discover its service provider. If you need to manually register it, add the following to your config/app.php file within the providers array:

'providers' => [
    // ...
    Caydeesoft\Installer\InstallerServiceProvider::class,
    // ...
],

Requirements

  • PHP ^8.2
  • illuminate/support ^12.0
  • illuminate/filesystem ^12.0

Usage

Installing Features

This package provides an Artisan command to install the necessary files and configurations into your Laravel application.

To install the features, run the following command:

php artisan installer-features:install

If you need to overwrite existing files, you can use the --force option:

php artisan installer-features:install --force

After running the install command, you should perform the following steps:

  1. Dump Autoload:
    composer dump-autoload
  2. Run Migrations:
    php artisan migrate
  3. Clear Optimization Cache:
    php artisan optimize:clear

[// TODO: Add more detailed usage instructions for the installed features, such as how to create and manage plugins, once the stubs are clearer.]

Contributing

[// TODO: Add contribution guidelines if this project is open to contributions.]

License

This project is proprietary.