-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
31 lines (31 loc) · 978 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
{
"name": "orbitale/imagemagick-php",
"description": "A system that allows creating commands to send to the exec() function to use ImageMagick's powerful features.",
"keywords": ["imagemagick", "imagick", "gd", "image", "converter"],
"homepage": "https://github.com/Orbitale/ImageMagickPHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alex Rock Ancelet",
"email": "[email protected]",
"homepage": "http://www.orbitale.io/"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-mbstring": "*",
"symfony/process": "^5.3|^6.0|^7.0",
"symfony/polyfill-php80": "^1.10"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.5"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Orbitale\\Component\\ImageMagick\\": "src/",
"Orbitale\\Component\\ImageMagick\\Tests\\": "Tests/"
}
}
}