PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Chun-Sheng, Li   Selective PHP Image Manipulation   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Selective PHP Image Manipulation
Perform several types of image manipulation
Author: By
Last change:
Date: 1 year ago
Size: 1,271 bytes
 

Contents

Class file image Download
{ "name": "selective/image", "type": "library", "description": "Image library", "keywords": [ "image", "picture", "resize" ], "homepage": "https://github.com/selective-php/image", "license": "MIT", "require": { "php": "^7.1", "ext-gd": "*" }, "require-dev": { "phpunit/phpunit": "^6", "phpstan/phpstan": "^0.11" }, "scripts": { "test": "php vendor/phpunit/phpunit/phpunit", "test-coverage": "php vendor/phpunit/phpunit/phpunit --coverage-clover build/logs/clover.xml --coverage-html build/coverage", "check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests", "fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit -n src tests", "phpstan": "php vendor/phpstan/phpstan/bin/phpstan analyse src tests --level=max -c phpstan.neon" }, "autoload": { "psr-4": { "Selective\\Image\\": "src/Image" } }, "autoload-dev": { "psr-4": { "Selective\\Image\\Test\\": "tests" } }, "config": { "sort-packages": true } }