-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
37 lines (37 loc) · 924 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "ricardofiorani/php-legofy",
"description": "A PHP Port of Legofy",
"keywords": ["lego", "legofy", "gd", "imagick", "image", "effect"],
"require": {
"php": "^7.1 || ^8.0",
"intervention/image": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^7.2 || ^9.0",
"spryker/code-sniffer": "^0.15.1"
},
"autoload": {
"psr-4": {
"RicardoFiorani\\Legofy\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\RicardoFiorani\\": "tests"
}
},
"license": "MIT",
"authors": [
{
"name": "Ricardo Fiorani",
"email": "[email protected]"
}
],
"scripts": {
"test": "phpunit"
},
"suggest": {
"ext-gd": "to use GD library based image processing.",
"ext-imagick": "to use Imagick based image processing."
}
}