forked from WebChemistry/images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.09 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
{
"name": "webchemistry/images",
"type": "library",
"description": "Image storage for easier uploading, deleting and manipulation.",
"license": [
"GPL-3.0"
],
"keywords": [
"images",
"storage"
],
"require": {
"php": ">=7.4",
"nette/http": "^3.0",
"nette/utils": "^3.0",
"tracy/tracy": "^2.6",
"nette/finder": "^2.5"
},
"require-dev": {
"nette/di": "^3.0",
"latte/latte": "^2.5",
"codeception/codeception": "^2.4",
"nette/forms": "^3.0",
"nette/application": "^3.0",
"webchemistry/testing-helpers": "~2.0",
"doctrine/orm": "^2.6",
"phpstan/phpstan": "^0.11",
"nettrine/hydrator": "dev-master"
},
"suggest": {
"webchemistry/images-s3": "To save an image on Amazon"
},
"autoload": {
"psr-4": {
"WebChemistry\\Images\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"Test\\": ["tests/classes/"]
}
},
"scripts": {
"tests": "vendor/bin/codecept run",
"phpstan": "vendor/bin/phpstan analyse src --level=6 -c phpstan.neon --ansi --no-progress"
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
},
"abandoned": "contributte/imagist"
}