forked from juicyfx/juicy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.13 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
{
"name": "juicyfx/juicy",
"description": "\uD83D\uDC18 PHP client for serverless juicy functions",
"keywords": ["juicyfx", "juicy", "php", "serverless", "lambda", "zeit", "now", "zeit-now"],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/juicyfx/juicy",
"authors": [
{
"name": "Milan Felix Šulc",
"homepage": "https://f3l1x.io"
}
],
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^6.5.5 || ^7.2.0"
},
"require-dev": {
"mockery/mockery": "^1.4.2",
"ninjify/nunjuck": "^0.4.0",
"ninjify/qa": "^0.12.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-nette": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12"
},
"autoload": {
"psr-4": {
"JuicyFx\\Juicy\\": "clients/php/src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Cases\\": "clients/php/tests/cases"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"vendor-dir": "clients/php/vendor"
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}