snowsoft/laravel-theme-installer

1.0 2023-12-23 12:02 UTC

This package is auto-updated.

Last update: 2024-04-23 13:01:30 UTC


README

Latest Stable Version Total Downloads License

This package is a fork of Laravel Module Installer to work with Theme packages. It allows installation of standalone Theme package into the themes/ directory instead of vendor/.

For example if your Theme package name is snowsoft/admin-theme then the package will be installed into themes/hexadog/admin directory.

You can specify an alternate directory by including a theme-dir in the extra data in your composer.json file:

"extra": {
    "theme-dir": "custom"
}

Installation

  1. Ensure you have the type set to laravel-theme in your theme's composer.json
  2. Require this package: composer require snowsoft/laravel-theme-installer
  3. Require your bespoke theme using Composer

Notes

When working on a theme that is version controlled within an app that is also version controlled, you have to commit and push from inside the Theme directory and then composer update within the app itself to ensure that the latest version of your theme (dependant upon constraint) is specified in your composer.lock file.

Related projects