Core - v1.2.0

Installation

Install via Composer

composer require artisanpack-ui/core

The package auto-registers via Laravel's package discovery.

Scaffold the unified config

php artisan artisanpack:scaffold-config

Generates config/artisanpack.php, the single configuration file every ArtisanPack UI package merges into. Re-run it any time you add or remove an ArtisanPack UI package — it merges in new sections and preserves any existing customisations. Pass --force to overwrite existing keys with the package defaults.

The publish tag artisanpack-config is also available if you prefer the standard vendor:publish workflow:

php artisan vendor:publish --tag=artisanpack-config

Verify the install

php artisan artisanpack:diagnose

Runs the five default diagnostic checks — environment, installed packages, configuration, service bindings, and Artisan commands — and prints a report. Pass --fix to repair the fixable checks (the missing-config check, today). The command exits non-zero when any check reports an error.

Deeper topics