| {
    "name": "joseluisq/gimage",
    "description": "A PHP library for easy image handling.",
    "type": "library",
    "license": "MIT",
    "keywords": [
        "image",
        "gd",
        "png",
        "jpg",
        "jpeg",
        "resize",
        "ellipse",
        "rectangle",
        "crop",
        "file",
        "save",
        "handler"
    ],
    "authors": [
        {
            "name": "Jose Quintana",
            "homepage": "https://github.com/joseluisq",
            "role": "Owner"
        }
    ],
    "support": {
        "issues": "https://github.com/joseluisq/gimage/issues"
    },
    "require": {
        "php": ">=7.4",
        "ext-gd": "*"
    },
    "config": {
        "platform": {
            "php": "7.4.0"
        }
    },
    "require-dev": {
        "phpunit/phpunit": "9",
        "friendsofphp/php-cs-fixer": "3"
    },
    "autoload": {
        "psr-4": {
            "GImage\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "GImage\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "lint": "PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix -v --allow-risky=yes --dry-run",
        "format": "PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix -v --allow-risky=yes",
        "test:unit": "./vendor/bin/phpunit",
        "test": [
            "@lint",
            "@test:unit"
        ]
    }
}
 |