{
  "name": "ssnepenthe/color-utils",
  "description": "A PHP library for performing SASS-like color manipulations.",
  "type": "library",
  "keywords": [
    "alpha",
    "blue",
    "brightness",
    "color",
    "convert",
    "conversion",
    "green",
    "hex",
    "hexadecimal",
    "hsl",
    "hsla",
    "hue",
    "lightness",
    "luminance",
    "red",
    "rgb",
    "rgba",
    "sass",
    "saturation",
    "scss",
    "manipulation",
    "transformation"
  ],
  "homepage": "https://github.com/ssnepenthe/color-utils",
  "license": "GPL-2.0",
  "require": {
    "php": ">=7.0"
  },
  "require-dev": {
    "psy/psysh": "^0.8",
    "phpunit/phpunit": "^6.0",
    "phpmd/phpmd": "^2.6",
    "phploc/phploc": "^3.0",
    "squizlabs/php_codesniffer": "^2.8",
    "vimeo/psalm": "^0.3"
  },
  "autoload": {
    "files": [
      "inc/colors.php",
      "inc/helpers.php",
      "inc/transformations.php"
    ],
    "psr-4": { "SSNepenthe\\ColorUtils\\": "src/" }
  },
  "scripts": {
    "phpcs": "./vendor/bin/phpcs --colors --standard=PSR2 {inc,src}",
    "phpcbf": "./vendor/bin/phpcbf --standard=PSR2 {inc,src}",
    "phploc": "./vendor/bin/phploc --exclude={vendor,tests} .",
    "phpmd": "./vendor/bin/phpmd . text cleancode,codesize,controversial,design,naming,unusedcode --exclude vendor/,tests/ --ignore-violations-on-exit",
    "phpunit": "./vendor/bin/phpunit --colors=always",
    "psalm": "./vendor/bin/psalm",
    "qc": ["@phpunit", "@phpcs"]
  }
}
