-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
71 lines (71 loc) · 1.9 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
68
69
70
71
{
"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": "^8.0",
"ext-json": "*",
"ext-openssl": "*",
"laminas/laminas-stdlib": "^3.7.0",
"laminas/laminas-servicemanager": "^3.10",
"laminas/laminas-http": "^2.15",
"opis/closure": "^3.6.3",
"rollun-com/rollun-utils": "^7.0|^8.0",
"rollun-com/rollun-logger": "^7.0.0",
"laminas/laminas-json": "^3.3.0",
"laminas/laminas-stratigility": "^3.5.0",
"laminas/laminas-diactoros": "^2.8.0",
"laminas/laminas-db": "^2.13.4",
"mtdowling/cron-expression": "^1.2",
"symfony/event-dispatcher": "4.4.*",
"aws/aws-sdk-php": "^3.334",
"symfony/filesystem": "^6.0",
"symfony/finder": "^6.0",
"symfony/lock": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"symfony/dotenv": "^6.0.3",
"laminas/laminas-config-aggregator": "^1.7",
"mezzio/mezzio-helpers": "^5.8",
"mezzio/mezzio": "^3.9",
"mezzio/mezzio-fastroute": "^3.4"
},
"autoload": {
"psr-4": {
"rollun\\callback\\": "src/Callback/src",
"ReputationVIP\\QueueClient\\": "src/ReputationVip/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"
},
"config": {
"allow-plugins": {
"rollun-com/rollun-installer": true
}
}
}