-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
64 lines (63 loc) · 1.57 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
{
"name": "rokka/client",
"type": "library",
"description": "Rokka.io client library",
"keywords": [
"rokka",
"pictures",
"images",
"optimization",
"processing",
"transcoding",
"cropping",
"resize",
"CDN"
],
"homepage": "https://rokka.io/",
"license": "MIT",
"authors": [
{
"name": "Liip AG",
"homepage": "http://www.liip.ch"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^6.5.8|^7.4.5",
"jbroadway/urlify": "^1.2",
"guzzlehttp/psr7": "^1.9.1|^2.4.5",
"ext-json": "*",
"rokka/utils": "^1.0",
"firebase/php-jwt": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.25",
"symfony/var-dumper": "^3.4|^4.0|^5.0|^6.0",
"phpstan/phpstan": "^1.11",
"friendsofphp/php-cs-fixer": "^3.57"
},
"autoload": {
"psr-4": {
"Rokka\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rokka\\Client\\Tests\\": "tests/"
},
"files": [
"vendor/symfony/var-dumper/Resources/functions/dump.php"
]
},
"scripts": {
"phpunit": "phpunit",
"phpstan": "phpstan analyze -c phpstan.neon -l 8 src/",
"lint:fix": "php-cs-fixer fix -v --diff --using-cache=yes src/",
"lint": "php-cs-fixer fix -v --dry-run --diff --using-cache=yes src/"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}