-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 980 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
38
{
"name": "jjpeleato/php-gd-image-processing",
"description": "Create and manipulate image files with PHP and the GD library of images.",
"keywords": ["gd graphics library", "psr1", "psr2", "lando"],
"homepage": "https://github.com/jjpeleato/php-gd-image-processing.git",
"license": "GPL-2.0",
"authors": [
{
"name": "José J. Peleato Pradel",
"homepage": "https://www.jjpeleato.com/"
}
],
"require": {
"php": "^7.3.0",
"ext-gd": "*",
"ext-json": "*"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.4"
},
"config": {
"process-timeout" : 0,
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test": [
"phpunit"
]
},
"extra": {
"scripts-description": {
"test": "Run unit tests"
}
}
}