You've already forked Epicnabbo-Catalogus-Updated-Daily
64 lines
1.4 KiB
JSON
64 lines
1.4 KiB
JSON
{
|
|
"name": "jiordiviera/laravel-log-cleaner",
|
|
"description": "A Laravel package to easily clean the log files.",
|
|
"keywords": [
|
|
"laravel",
|
|
"log",
|
|
"cleaner",
|
|
"logging",
|
|
"log management",
|
|
"laravel package",
|
|
"maintenance",
|
|
"log files",
|
|
"artisan"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Jiordi Viera",
|
|
"email": "jiordikengne@gmail.com",
|
|
"role": "Owner",
|
|
"homepage": "https://github.com/jiordiviera"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.1|^8.2|^8.3",
|
|
"illuminate/support": "^9.0|^10.0|^11.0|^12.0",
|
|
"illuminate/console": "^9.0|^10.0|^11.0|^12.0"
|
|
},
|
|
"require-dev": {
|
|
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
|
|
"pestphp/pest": "^1.23|^2.0|^3.0",
|
|
"pestphp/pest-plugin-laravel": "^1.4|^2.0|^3.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"JiordiViera\\LaravelLogCleaner\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"JiordiViera\\LaravelLogCleaner\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/pest",
|
|
"test-coverage": "vendor/bin/pest --coverage"
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"JiordiViera\\LaravelLogCleaner\\LaravelLogCleanerServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"config": {
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true
|
|
},
|
|
"sort-packages": true
|
|
}
|
|
}
|