Files
palette/composer.json
renovate[bot] f71c02e3cf chore(deps): update dependency phpunit/phpunit to v10.5.3
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-14 19:45:52 +00:00

38 lines
955 B
JSON

{
"name": "ivuorinen/palette",
"description": "Get most used colors from an image",
"keywords": ["image", "colors", "palette", "psr-2"],
"homepage": "https://github.com/ivuorinen/palette",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ismo Vuorinen",
"email": "ivuorinen@me.com"
}
],
"support": {
"source": "https://github.com/ivuorinen/palette",
"issues": "https://github.com/ivuorinen/palette/issues"
},
"autoload": {
"psr-0": { "ivuorinen\\Palette\\": "src/" },
"classmap": ["src/"]
},
"autoload-dev": {
"psr-0": {
"ivuorinen\\Palette\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"phpunit/phpunit": "10.5.3",
"squizlabs/php_codesniffer": "3.8.0"
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}