nyoncode / wire-suite
The whole wire stack in one require, with an interactive installer.
Requires
- php: ^8.2
- illuminate/support: ^12.0|^13.0
- nyoncode/laravel-package-toolkit: ^2.5.0
- nyoncode/wire-admin: 2.0.0
- nyoncode/wire-core: 2.0.0
- nyoncode/wire-forms: 2.0.0
- nyoncode/wire-panels: 2.0.0
- nyoncode/wire-sortable: 2.0.0
- nyoncode/wire-table: 2.0.0
Requires (Dev)
- laravel/pint: ^1.29
- orchestra/testbench: ^10.0|^11.0
- pestphp/pest: ^4.0|^5.0
Suggests
- nyoncode/laravel-permission-extended: Roles and wildcard permissions, used by the users module.
- nyoncode/wire-module-audit: A screen for the audit trail wire-core already records.
- nyoncode/wire-module-media: A media library with uploads and previews.
- nyoncode/wire-module-notifications: The history behind the notification bell.
- nyoncode/wire-module-settings: Typed application settings with a page to edit them.
- nyoncode/wire-module-users: User administration, with roles where the application has them.
Provides
None
Conflicts
None
Replaces
None
README
WireSuite
The whole WireSuite stack in one require, and one command that turns a clean Laravel into a working admin.
composer require nyoncode/wire-suite php artisan wire:install
wire:install finds the parts that are installed, asks which to set up
(everything is pre-selected), and runs each package's own installer rather than a
copy of it. Then it lists the modules this application does not have yet, with
the composer require line for each.
It never runs composer itself. The command runs inside the application it is about to change — the autoloader in use is the one composer would rewrite — and the failure modes (memory, plugins, a production image without composer) are the ones nobody can debug from a stack trace. A line to paste is the honest answer.
What comes with it
| Package | |
|---|---|
| Engine, actions, modals, notifications, widgets, infolists | wire-core |
| Forms | wire-forms |
| Tables | wire-table |
| Drag-and-drop reordering | wire-sortable |
| Resources, pages, routing, zones | wire-panels |
| The admin shell | wire-admin |
Modules, separately
Each is its own require, because an application that wants users and nothing else should not carry a media library:
composer require nyoncode/wire-module-users composer require nyoncode/wire-module-settings composer require nyoncode/wire-module-audit composer require nyoncode/wire-module-notifications composer require nyoncode/wire-module-media
Then php artisan wire:install again — a module registers itself, so nothing
goes into a config file.
Documentation
Full docs: docs/start/installation.md
(česky).
License
MIT.