composer.json
{
"name": "edofre/laravel-softdelete-cleanup",
"description": "Console command to cleanup your database from softdeleted models",
"keywords": [
"softdelete",
"console",
"command",
"cleanup",
"laravel"
],
"homepage": "https://github.com/edofre/laravel-softdelete-cleanup",
"license": "MIT",
"authors": [
{
"name": "Edo Freriks",
"email": "edofre@gmail.com"
}
],
"require": {
"php" : "^7.2.5",
"laravel/framework": "^5.8|^6.0|^7.0|^8.0"
},
"require-dev": {
"orchestra/testbench": "~3.2.0|~3.3.0",
"phpunit/phpunit": "^5.0"
},
"autoload": {
"psr-4": {
"Edofre\\SoftdeleteCleanup\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Edofre\\SoftdeleteCleanup\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"laravel": {
"providers": [
"Edofre\\SoftdeleteCleanup\\SoftdeleteCleanupServiceProvider"
]
}
}
}