richardpiel / cakephp-softdelete
Soft Delete Behavior for CakePHP
Package info
github.com/RichardPiel/cakephp-softdelete
Type:cakephp-plugin
pkg:composer/richardpiel/cakephp-softdelete
4.03
2021-07-12 19:43 UTC
Requires
- cakephp/orm: ^4.0
Requires (Dev)
- cakephp/cakephp: ^4.0
- phpunit/phpunit: ^8.5.0
README
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require richardpiel/cakephp-softdelete
Then you'll need to load the plugin in your src/Application.php file.
$this->addPlugin('SofDelete');
or you can use the console to do this for you.
bin/cake plugin load SoftDelete