-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.09 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.09 KB
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
{
"name": "ganeshkandu/imageanalysis",
"description": "This tool compares the original image to a recompressed version. This can make manipulated regions stand out in various ways. For example they can be darker or brighter than similar regions which have not been manipulated.",
"keywords": ["composer","php","packagist","image","ela","analysis","forensic"],
"type": "library",
"license": "GPL-3.0",
"authors": [
{
"name": "Ganesh Kandu",
"email": "kanduganesh@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0",
"ext-gd": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.7 || ^6.5"
},
"support": {
"issues": "https://github.com/ganeshkandu/imageanalysis/issues",
"source": "https://github.com/ganeshkandu/imageanalysis"
},
"minimum-stability": "beta",
"autoload": {
"psr-4": {
"ImageAnalysis\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ImageAnalysis\\Tests\\": "tests"
}
}
}