forked from mage-os/mageos-async-events-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1001 Bytes
/
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
{
"name": "mage-os/magento2-eventbridge-notifier",
"description": "An Amazon EventBridge notifier backed by the mage-os/async-events module.",
"type": "magento2-module",
"require": {
"php": ">=7.0",
"magento/framework": "*",
"aws/aws-sdk-php": "^3.110"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require-dev": {
"squizlabs/php_codesniffer": "~3.5",
"magento/magento-coding-standard": "^6.0"
},
"license": [
"GPL-3.0-only"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"MageOS\\EventBridge\\": ""
}
},
"scripts": {
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
],
"post-update-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
]
}
}