forked from rollun-lc/rollun-callback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.79 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": "rollun-com/rollun-callback",
"description": "Callback",
"minimum-stability": "stable",
"type": "library",
"license": "GPL-3.0",
"authors": [
{
"name": "avz-cmf",
"email": "[email protected]"
},
{
"name": "victorynox",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"ext-openssl": "*",
"aws/aws-sdk-php": "2.8.31",
"zendframework/zend-stdlib": "^3.1",
"zendframework/zend-servicemanager": "^3.3",
"zendframework/zend-http": "^2.5",
"reputation-vip/queue-client": "^2.0",
"opis/closure": "^2.1.0",
"rollun-com/rollun-utils": "^5.2.2",
"rollun-com/rollun-logger": "^5.1 || ^6.0",
"zendframework/zend-json": "^3.1",
"zendframework/zend-stratigility": "^3.0",
"zendframework/zend-diactoros": "^2.0",
"zendframework/zend-db": "^2.10",
"mtdowling/cron-expression": "^1.2"
},
"require-dev": {
"zendframework/zend-config-aggregator": "^1.1",
"zendframework/zend-expressive": "^3.2",
"zendframework/zend-expressive-helpers": "^5.1",
"zendframework/zend-expressive-fastroute": "^3.0",
"symfony/dotenv": "^4.2",
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "^3.0",
"filp/whoops": "^2.3"
},
"autoload": {
"psr-4": {
"rollun\\callback\\": "src/Callback/src"
}
},
"autoload-dev": {
"psr-4": {
"rollun\\test\\unit\\": "test/unit",
"rollun\\test\\functional\\": "test/functional"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"upload-coverage": "coveralls -v",
"code-sniffer": "phpcs .",
"code-beautiful": "phpcbf .",
"server": "php -S 0.0.0.0:8000 -t public public/index.php"
}
}