PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Jose Luis Quintana   GImage PHP Canvas to Image   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: GImage PHP Canvas to Image
Create and compose canvas images from other images
Author: By
Last change: feat: add php 8.1 support

- add php 8.1 ci and tests
- fixes missing types casting
refactor: github actions for testing on php 7.4 and 8.0

it also:
- applies code formatting via `php-cs-fixer`
- removes some project files
- Removes Travis ci config
Date: 1 year ago
Size: 1,404 bytes
 

Contents

Class file image Download
{ "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" ] } }