composer.json
{
"name": "bnomei/kirby3-page-sqlite",
"type": "kirby-plugin",
"version": "1.2.2",
"description": "Kirby 3 Plugin to cache the content file using SQLite",
"license": "MIT",
"authors": [
{
"name": "Bruno Meilick",
"email": "b@bnomei.com"
}
],
"keywords": [
"kirby3",
"kirby3-cms",
"kirby3-plugin",
"cache",
"sqlite",
"page",
"performance"
],
"autoload": {
"psr-4": {
"Bnomei\\": "classes/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": ">=7.2.0",
"getkirby/composer-installer": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"getkirby/cms": "^3.2",
"php-coveralls/php-coveralls": "^2.1"
},
"scripts": {
"analyze": "phpstan analyse classes",
"insights": "./vendor/bin/phpinsights -v",
"fix": "php-cs-fixer fix",
"test": [
"mkdir -p tests/logs",
"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"
}
}