composer.json
{
"name": "bnomei/kirby-nitro",
"type": "kirby-plugin",
"version": "2.1.0",
"description": "Nitro speeds up the loading of content in your Kirby project.",
"license": "MIT",
"authors": [
{
"name": "Bruno Meilick",
"email": "b@bnomei.com"
}
],
"keywords": [
"kirby",
"kirby-cms",
"kirby-plugin",
"cache",
"files",
"directory",
"index",
"content",
"model",
"user",
"page",
"file",
"performance"
],
"autoload": {
"psr-4": {
"Bnomei\\": "classes/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"getkirby/composer-installer": true,
"pestphp/pest-plugin": true
}
},
"require": {
"php": ">=8.2.0",
"getkirby/composer-installer": "^1.2"
},
"require-dev": {
"getkirby/cms": "^4.3.0",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.13",
"pestphp/pest": "^2.24",
"pestphp/pest-plugin-type-coverage": "^2.4",
"spatie/ray": "^1.41"
},
"scripts": {
"analyze": "./vendor/bin/phpstan",
"fix": "./vendor/bin/pint",
"test": "./vendor/bin/pest",
"coverage": [
"php tests/patch.php",
"./vendor/bin/pest --coverage"
],
"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",
"php tests/patch.php"
]
},
"extra": {
"kirby-cms-path": "tests/kirby"
},
"conflict": {
"bnomei/kirby3-boost": "*"
},
"suggest": {
"bnomei/kirby-blueprints": "PHP Class-based Blueprints for Kirby CMS for better type safety and code completion.",
"bnomei/kirby3-lapse": "Cache any data until set expiration time (with automatic keys).",
"getkirby/staticache": "Static site performance on demand!"
}
}