Files
palette/composer.json
Ismo Vuorinen 197d08014b feat: php 8.3, phpunit 11 (#57)
* 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
2024-02-17 12:47:20 +02:00

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"
}
}