bnomei/kirby3-handlebars

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "bnomei/kirby3-handlebars",
  "type": "kirby-plugin",
  "version": "4.0.0",
  "license": "MIT",
  "description": "Kirby 3 Component for semantic templates with Handlebars and Mustache",
  "authors": [
    {
      "name": "Bruno Meilick",
      "email": "b@bnomei.com"
    }
  ],
  "keywords": [
    "kirby",
    "kirby-cms",
    "kirby-plugin",
    "handlebars",
    "mustache",
    "cache",
    "component",
    "template",
    "template-engine",
    "performance",
    "semantic",
    "logic-less",
    "fractal",
    "fractal.build",
    "hbs",
    "lightncandy",
    "query-language",
    "controller",
    "model",
    "kql"
  ],
  "autoload": {
    "psr-4": {
      "Bnomei\\": "classes/"
    }
  },
  "config": {
    "optimize-autoloader": true,
    "sort-packages": true,
    "allow-plugins": {
      "getkirby/composer-installer": true
    }
  },
  "require": {
    "php": ">=8.1",
    "getkirby/composer-installer": "^1.2",
    "zordius/lightncandy": "^1.2.2"
  },
  "require-dev": {
    "getkirby/cms": "^4.0",
    "php-coveralls/php-coveralls": "^2.4",
    "phpunit/phpunit": "^9.5"
  },
  "scripts": {
    "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"
  },
  "suggest": {
    "bnomei/kirby3-lapse": "For faster and automatic caching based on modification of Kirby Objects"
  }
}