{
    "name": "ksubileau/color-thief-php",
    "type": "library",
    "homepage" : "http://www.kevinsubileau.fr/projets/color-thief-php",
    "description": "Grabs the dominant color or a representative color palette from an image.",
    "keywords": ["color", "thief", "php", "dominant", "palette"],
    "license": "MIT",

    "authors": [
        {
            "name": "Kevin Subileau",
            "homepage": "http://www.kevinsubileau.fr"
        }
    ],

    "require": {
        "php": "^7.2|^8.0",
        "ext-fileinfo": "*"
    },

    "require-dev": {
        "phpunit/phpunit": "^8.5",
        "friendsofphp/php-cs-fixer": "^3.4",
        "phpstan/phpstan": "^1.2.0",
        "phpstan/phpstan-phpunit": "^1.0.0"
    },

    "suggest": {
        "ext-gd": "to use the GD image adapter.",
        "ext-imagick": "to use the Imagick image adapter.",
        "ext-gmagick": "to use the Gmagick image adapter."
    },

    "autoload": {
        "psr-4": {
            "ColorThief\\": "src/ColorThief"
        }
    },

    "autoload-dev": {
        "psr-4": {
            "ColorThief\\Tests\\": "tests/"
        }
    }
}
