quickweb/system

Core system package for Quickweb Laravel applications.

Maintainers

Package info

github.com/quickwebdev2026/quickweb-system

pkg:composer/quickweb/system

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.0.1 2026-06-12 09:08 UTC

This package is auto-updated.

Last update: 2026-06-12 09:10:38 UTC


README

Core system package for Quickweb-based Laravel applications.

This package is part of the standard platform stack and is expected to be present in production deployments. It handles routine system maintenance tasks and integrates with the host application configuration layer.

Requirements

  • PHP ^7.3|^8.0
  • Laravel ^8.0|^9.0|^10.0|^11.0

Installation

composer require quickweb/system

Publish configuration (recommended):

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

Review the published config/system.php file and set the corresponding SYSTEM_* environment variables for your environment.

Scheduler

The package relies on the Laravel task scheduler. Add the following entry to the server crontab:

* * * * * cd /path-to-project && php artisan schedule:run >> /dev/null 2>&1

Host application

Applications that store settings outside of Laravel config should bind Quickweb\System\Contracts\SettingResolverInterface in a service provider. Optional value resolvers can be configured in config/system.php — see the published config for details.

License

MIT