-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
70 lines (70 loc) · 1.93 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
63
64
65
66
67
68
69
70
{
"name": "contao/image",
"type": "library",
"description": "Contao image library",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Martin Auswöger",
"homepage": "https://github.com/ausi"
}
],
"require": {
"php": "^7.2 || ^8.0",
"ext-dom": "*",
"ext-gd": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-zlib": "*",
"imagine/imagine": "^1.3",
"symfony/deprecation-contracts": "^2.1 || ^3.0",
"symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
"symfony/polyfill-php73": "^1.27",
"symfony/polyfill-php80": "^1.27"
},
"conflict": {
"contao/imagine-svg": "<1.0 || >=2.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"contao/imagine-svg": "^1.0",
"contao/test-case": "^4.5",
"phpunit/phpunit": "^8.5 || ^9.5",
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
"symfony/polyfill-php81": "^1.27"
},
"suggest": {
"ext-exif": "To support EXIF auto-rotation and preserve copyright metadata"
},
"autoload": {
"psr-4": {
"Contao\\Image\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Contao\\Image\\Tests\\": "tests/"
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "tools"
}
},
"scripts": {
"all": [
"@unit-tests",
"@cs-fixer",
"@phpstan"
],
"cs-fixer": "@php tools/ecs/vendor/bin/ecs check src tests tools/ecs/config --config tools/ecs/config/default.php --fix --ansi",
"phpstan": "@php tools/phpstan/vendor/bin/phpstan analyze --ansi",
"unit-tests": "vendor/bin/phpunit --colors=always"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}