forked from weserv/images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.76 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
58
59
60
61
62
63
64
65
66
67
{
"name": "andrieslouw/imagesweserv",
"type": "project",
"version": "3.0.0",
"license": "BSD-3-Clause",
"description": "An image cache & resize proxy",
"keywords": [
"image",
"processing",
"manipulation",
"caching",
"editing",
"proxy"
],
"homepage": "https://github.com/andrieslouw/imagesweserv",
"authors": [
{
"name": "Andries Louw Wolthuizen",
"email": "info@andrieslouw.nl"
},
{
"name": "Kleis Auke Wolthuizen",
"email": "info@kleisauke.nl"
}
],
"require": {
"php": ">=7.0.13",
"ext-curl": "*",
"ext-vips": ">=1.0.8",
"cloudflare/sdk": "^1.0",
"guzzlehttp/guzzle": "^6.3",
"jcupitt/vips": "1.0.x-dev",
"league/uri": "^5.2",
"predis/predis": "^1.1"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^0.9.2",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^6.5",
"squizlabs/php_codesniffer": "^3.1"
},
"autoload": {
"psr-4": {
"AndriesLouw\\imagesweserv\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AndriesLouw\\imagesweserv\\Test\\": "tests/"
}
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpunit",
"phpcs --standard=phpcs-ruleset.xml ."
],
"post-install-cmd": "\\League\\Uri\\Installer\\ICANNSection::update",
"post-update-cmd": "\\League\\Uri\\Installer\\ICANNSection::update"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"classmap-authoritative": true,
"sort-packages": true
}
}