Individual settings for the application.
- PHP >= 8.3
- Nette Framework
- Composer
- Drago Project core packages
composer require drago-ex/project-settingsFile copying is handled automatically by drago-ex/project-installer,
which must be installed in your project. Without it, copy the files manually according to the copy section
in this package's composer.json. To skip this package, set "skip": true under
extra.drago-project.packages.<package-name> in your root composer.json.
use use App\Core\Settings\SettingsRequire;{varType App\Core\Settings\Settings $settings}
{* website name *}
{$settings->website}
{* website description *}
{$settings->description}We can customize the settings according to our needs.