-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
62 lines (62 loc) · 1.37 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"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"
]
}
}