-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
47 lines (47 loc) · 990 Bytes
/
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
{
"name": "webchemistry/images",
"type": "library",
"description": "Image storage for easier uploading, deleting and manipulation.",
"license": [
"GPL-3.0"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/AntikCz/WebChemistry/images/issues"
},
"keywords": [
"images",
"storage"
],
"authors": [
{
"name": "Antik",
"email": "[email protected]"
}
],
"require": {
"php": ">= 5.5",
"nette/http": "^2.3",
"nette/utils": "^2.3",
"nette/finder": "^2.3",
"nette/tokenizer": "^2.2"
},
"require-dev": {
"nette/di": "^2.3",
"latte/latte": "^2.3",
"codeception/codeception": "^2.1",
"nette/forms": "2.3",
"nette/application": "2.3",
"webchemistry/testing-helpers": "dev-master",
"aws/aws-sdk-php": "^3.31"
},
"suggest": {
"aws/aws-sdk-php": "To save an image on Amazon",
"cloudinary/cloudinary_php": "To save an image on Cloudinary"
},
"autoload": {
"psr-4": {
"WebChemistry\\Images\\": "src/"
}
}
}