-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.32 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
{
"name": "popphp/pop-image",
"description": "PHP Image library for generating, editing and effecting images. A component of the Pop PHP Framework",
"keywords": [
"image",
"image resize",
"image effects",
"image crop",
"image text",
"draw image",
"php image library",
"php image processing",
"pop",
"pop php",
"php"
],
"homepage": "https://github.com/popphp/pop-image",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Nick Sagona",
"email": "[email protected]",
"homepage": "https://www.popphp.org/"
}
],
"require": {
"php": ">=8.2.0",
"popphp/pop-color": "^1.0.1",
"ext-gd": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.0.0",
"ext-imagick": "*"
},
"suggest": {
"ext-ctype": "For character type checking",
"ext-imagick": "For using ImageMagick"
},
"autoload": {
"psr-4": {
"Pop\\Image\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pop\\Image\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "4.1.x-dev"
}
}
}