-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.32 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
{
"name": "shoppinpal/yapep-common",
"description": "Common extensions to the Yapep Base Framework, as used by shoppinpal",
"minimum-stability": "stable",
"license": "GPL-2.0",
"require": {
"php": ">=7.2",
"ext-json": "*",
"szeber/yapep_base": "0.3.x-dev",
"nesbot/carbon": "^2.22.0",
"psr/log": "^1.1.0",
"predis/predis": "^1.1.1"
},
"autoload": {
"psr-4": {
"ShoppinPal\\YapepCommon\\": "src"
}
},
"require-dev": {
"ext-memcached": "*",
"aws/aws-sdk-php": "^3.108.3",
"phpunit/phpunit": "^8.3.3",
"behat/behat": "^3.5",
"mockery/mockery": "^1.2.2",
"swiftmailer/swiftmailer": "^6.2.1",
"consolidation/robo": "^1.4.10",
"josegonzalez/dotenv": "^3.2.0",
"monolog/monolog": "^1.24.0",
"sentry/sdk": "^2.0.3",
"zircote/swagger-php": "^2.0.10"
},
"suggest": {
"ext-memcached:*": "Allows using memcached",
"aws/aws-sdk-php": "Allows using SQS for queueing",
"monolog/monolog": "Allows using the LineFormatter",
"swiftmailer/swiftmailer": "Allows using the swiftmailer library for e-mail sending",
"sentry/setry": "Allows using the SentryErrorHandler"
},
"bin": [
"batch_health_check"
]
}