-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
54 lines (54 loc) · 1.26 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
{
"name": "admad/cakephp-glide",
"description": "CakePHP plugin for using Glide image manipulation library.",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"league",
"glide",
"image",
"processing",
"manipulation",
"editing",
"gd",
"imagemagick",
"imagick"
],
"homepage": "https://github.com/ADmad/cakephp-glide",
"authors": [
{
"name":"ADmad",
"role":"Author",
"homepage":"https://github.com/ADmad"
}
],
"license": "MIT",
"support": {
"source":"https://github.com/ADmad/cakephp-glide",
"issues":"https://github.com/ADmad/cakephp-glide/issues"
},
"require": {
"cakephp/cakephp": "^5.0",
"league/glide": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^10.1"
},
"autoload": {
"psr-4": {
"ADmad\\Glide\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ADmad\\Glide\\Test\\": "tests",
"TestApp\\": "tests/test_app/src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}