rectitude-open/filapress-core

The core package for FilaPress.


README

Latest Version on Packagist Tests PHPStan Total Downloads PRs Welcome

This is the core package for FilaPress. It acts as a central integration point, bundling various Filament plugins and managing their policies, configurations, and migrations. FilaPress itself relies on this single core package, which then orchestrates other underlying plugins, simplifying overall extension management.

Installation

You can install the package via composer:

composer require rectitude-open/filapress-core

You can publish and run the migrations with:

php artisan vendor:publish --tag="filapress-core-migrations"
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --tag="filapress-core-config"

This is the contents of the published config file:

return [
];

Optionally, you can publish the views using

php artisan vendor:publish --tag="filapress-core-views"

Usage

$filapressCore = new RectitudeOpen\FilaPressCore();
echo $filapressCore->echoPhrase('Hello, RectitudeOpen!');

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.