-
Notifications
You must be signed in to change notification settings - Fork 191
/
composer.json
executable file
·38 lines (38 loc) · 958 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": "gregwar/image",
"description": "Image handling",
"keywords": [
"image",
"gd"
],
"homepage": "https://github.com/Gregwar/Image",
"license": "MIT",
"authors": [
{
"name": "Grégoire Passault",
"email": "[email protected]",
"homepage": "https://gregwar.com/"
}
],
"require": {
"php": "^7.3|^8.0",
"gregwar/cache": "^1.0.12",
"ext-gd": "*"
},
"require-dev": {
"sllh/php-cs-fixer-styleci-bridge": "~1.0",
"phpunit/phpunit": "^9"
},
"suggest": {
"behat/transliterator": "Transliterator provides ability to set non-latin1 pretty names"
},
"target-dir": "Gregwar/Image",
"autoload": {
"psr-0": {
"Gregwar\\Image": ""
}
},
"scripts": {
"test": "./vendor/bin/phpunit --version && ./vendor/bin/phpunit -c phpunit.xml.dist"
}
}