bnomei/kirby3-cloudconvert

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "bnomei/kirby3-cloudconvert",
  "type": "kirby-plugin",
  "version": "1.1.10",
  "description": "Plugin to convert anything to anything using cloudconvert.",
  "license": "MIT",
  "authors": [
    {
      "name": "Bruno Meilick",
      "email": "b@bnomei.com"
    }
  ],
  "keywords": [
    "kirby3",
    "kirby3-cms",
    "kirby3-plugin",
    "convert",
    "convert-images",
    "anything",
    "cloudconvert"
  ],
  "autoload": {
    "psr-4": {
      "Bnomei\\": "classes/"
    }
  },
  "config": {
    "optimize-autoloader": true,
    "sort-packages": true,
    "allow-plugins": {
      "getkirby/composer-installer": true
    }
  },
  "require": {
    "php": ">=8.0",
    "cloudconvert/cloudconvert-php": "^2.2",
    "getkirby/composer-installer": "^1.1"
  },
  "require-dev": {
    "phpunit/phpunit": "^8.3",
    "getkirby/cms": "^3.8",
    "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 .;"
    ]
  },
  "extra": {
    "kirby-cms-path": "tests/kirby"
  }
}