-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.5 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
{
"name": "creativestyle/mageops-report-cloudwatch-forwarder",
"description": "Forwards exception report files to CloudWatch Logs",
"keywords": [
"aws",
"magento",
"logging",
"cloudwatch"
],
"license": "MIT",
"authors": [
{
"name": "Filip Sobalski",
"email": "[email protected]",
"homepage": "http://creativestyle.pl/"
}
],
"autoload": {
"psr-4": {
"CS\\ExceptionReportAwsLogger\\": "src/"
}
},
"require": {
"php": "^7 || ^8",
"aws/aws-sdk-php": "^3.36",
"symfony/console": "^4",
"psr/log": "^3"
},
"require-dev": {
"macfja/phar-builder": "^0.2.8"
},
"scripts": {
"build": "php -d phar.readonly=0 vendor/bin/phar-builder package composer.json"
},
"extra": {
"phar-builder": {
"compression": "GZip",
"name": "aws-excfwd.phar",
"output-dir": "build",
"entry-point": "./bin/cli.php",
"include": ["bin"],
"include-dev": false,
"skip-shebang": false,
"events": {
"command.package.start" : "git rev-parse --short HEAD > bin/version",
"command.package.end": [
"rm bin/version",
"chmod +x build/aws-excfwd.phar",
"mv build/aws-excfwd.phar build/aws-excfwd"
]
}
}
}
}