richardpiel / cakephp-softdelete
Soft Delete Behavior for CakePHP
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:cakephp-plugin
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