forked from WebChemistry/images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 941 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
{
"name": "webchemistry/images",
"type": "library",
"description": "Image storage for easier uploading, deleting and manipulation.",
"license": [
"GPL-3.0"
],
"keywords": [
"images",
"storage"
],
"require": {
"php": ">= 7.1",
"nette/http": "^2.4",
"nette/utils": "^2.4",
"nette/finder": "^2.4",
"nette/tokenizer": "^2.2"
},
"require-dev": {
"nette/di": "^2.4",
"latte/latte": "^2.4",
"codeception/codeception": "^2.4",
"phpunit/phpunit": "~5.0 || ~6.0 || ~7.1.0",
"nette/forms": "^2.4",
"nette/application": "^2.4",
"webchemistry/testing-helpers": "dev-master",
"aws/aws-sdk-php": "^3.31",
"cloudinary/cloudinary_php": "^1.10",
"kdyby/doctrine": "^3.3",
"phpstan/phpstan": "^0.10.0"
},
"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/"
}
}
}