76 lines
1.9 KiB
JSON
76 lines
1.9 KiB
JSON
{
|
|
"name": "bnomei/kirby3-janitor",
|
|
"type": "kirby-plugin",
|
|
"version": "2.16.0",
|
|
"license": "MIT",
|
|
"description": "Kirby 3 Plugin for running jobs like cleaning the cache from within the Panel, PHP code or a cronjob",
|
|
"authors": [
|
|
{
|
|
"name": "Bruno Meilick",
|
|
"email": "b@bnomei.com"
|
|
}
|
|
],
|
|
"keywords": [
|
|
"kirby3",
|
|
"kirby3-cms",
|
|
"kirby3-plugin",
|
|
"cache",
|
|
"clean",
|
|
"janitor",
|
|
"job-runner",
|
|
"cronjob",
|
|
"ajax",
|
|
"button"
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Bnomei\\": "classes/"
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"getkirby/composer-installer": true
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=7.4.0",
|
|
"getkirby/composer-installer": "^1.2",
|
|
"league/climate": "^3.7",
|
|
"symfony/deprecation-contracts": "2.5",
|
|
"symfony/finder": "^5.4"
|
|
},
|
|
"require-dev": {
|
|
"getkirby/cms": "^3.5",
|
|
"php-coveralls/php-coveralls": "^2.4",
|
|
"phpunit/phpunit": "^9.5"
|
|
},
|
|
"scripts": {
|
|
"build": [
|
|
"yarn",
|
|
"yarn run build"
|
|
],
|
|
"analyze": "phpstan analyse classes",
|
|
"fix": "php-cs-fixer fix",
|
|
"test": [
|
|
"mkdir -p tests/logs",
|
|
"@putenv XDEBUG_MODE=coverage",
|
|
"phpunit --configuration ./phpunit.xml"
|
|
],
|
|
"dist": [
|
|
"composer install --no-dev --optimize-autoloader",
|
|
"git rm -rf --cached .; git add .;"
|
|
],
|
|
"kirby": [
|
|
"composer install",
|
|
"composer update",
|
|
"composer install --working-dir=tests/kirby --no-dev --optimize-autoloader",
|
|
"composer update --working-dir=tests/kirby"
|
|
]
|
|
},
|
|
"extra": {
|
|
"kirby-cms-path": "tests/kirby"
|
|
}
|
|
}
|