-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
57 lines (57 loc) · 1.21 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
{
"name" : "pluf/imgx",
"description" : "Image compressor and optimizer of pluf",
"type" : "library",
"license" : "MIT",
"authors" : [{
"name" : "Mostafa Barmshory",
"email" : "[email protected]",
"homepage" : "http://dpq.co.ir",
"role" : "developer"
}, {
"name" : "Mohammad Hadi Mansouri",
"email" : "[email protected]",
"homepage" : "http://dpq.co.ir",
"role" : "developer"
}
],
"minimum-stability" : "stable",
"autoload" : {
"psr-4" : {
"Pluf\\Imgx\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Pluf\\Tests\\" : "tests"
}
},
"homepage" : "https://github.com/pluf/imgx",
"support" : {
"email" : "[email protected]",
"issues" : "https://github.com/pluf/imgx/issues",
"forum" : "https://github.com/pluf/imgx",
"wiki" : "https://github.com/pluf/imgx/wiki",
"source" : "https://github.com/pluf/imgx"
},
"keywords" : [
"pluf",
"php",
"cache",
"pluf-module",
"imagify"
],
"require" : {
"pluf/core" : "^7.0",
"pluf/di" : "^7.0",
"pluf/scion" : "7.0.x",
"pluf/orm" : "^7.0",
"pluf/log" : "^7.0",
"atk4/dsql" : "2.3.x",
"intervention/image" : "^2.5"
},
"require-dev" : {
"pluf/http2" : "7.0.x",
"phpunit/phpunit" : "9.x"
}
}