mirror of
https://github.com/ivuorinen/palette.git
synced 2026-01-26 11:34:09 +00:00
* Upgrade runner php to 8.3, phpunit to 11 * Fix tests, tweaked the code, added missing ext- to composer.json * Fix exception related code smells
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
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-4": {
|
|
"ivuorinen\\Palette\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"ivuorinen\\Palette\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^8.3",
|
|
"ext-gd": "*",
|
|
"ext-exif": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^11",
|
|
"squizlabs/php_codesniffer": "^3"
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/phpunit",
|
|
"lint": "vendor/bin/phpcs",
|
|
"lint-fix": "vendor/bin/phpcbf"
|
|
}
|
|
}
|