-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
69 lines (69 loc) · 2.02 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
{
"name": "tck/zf2-imageresizer",
"description": "Image resizer and manipulation module for Laminas",
"type": "library",
"authors": [
{
"name": "Tobias Knab",
"email": "[email protected]",
"role": "Developer"
}
],
"keywords": [
"image",
"zend",
"zf2",
"zf3",
"laminas",
"mvc",
"php"
],
"homepage": "https://github.com/tck/zf2-imageresizer",
"license": [
"MIT"
],
"require": {
"php": "^7.2 || ^8.0 || ^8.1 || ^8.2",
"laminas/laminas-mvc": "^3.0.1",
"laminas/laminas-loader": "^2.5.1",
"laminas/laminas-modulemanager": "^2.7.2",
"laminas/laminas-config": "^2.6 || ^3.0",
"laminas/laminas-cache": "^2.7.1 || ^3.0",
"laminas/laminas-log": "^2.9",
"laminas/laminas-view": "^2.8",
"laminas/laminas-i18n": "^2.7.3",
"laminas/laminas-http": "^2.5.4",
"imagine/imagine": "^0.6 || ^1.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.7",
"squizlabs/php_codesniffer": "^3.5",
"phploc/phploc": "^7.0",
"pdepend/pdepend": "2.*",
"phpmd/phpmd": "2.*",
"laminas/laminas-serializer": "~2.5",
"phpunit/phpunit": "^9.5",
"nikic/php-parser": "^4.10",
"sebastian/phpcpd": "^6.0"
},
"autoload": {
"psr-4": {
"TckImageResizer\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"TckImageResizerTest\\": "./tests/TckImageResizerTest/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --standard=PSR2 --ignore=\"tests/TckImageResizerTest/Bootstrap.php\" ./src/ ./tests/",
"cs-fix": "phpcbf --standard=PSR2 --ignore=\"tests/TckImageResizerTest/Bootstrap.php\" ./src/ ./tests/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}