-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
60 lines (60 loc) · 1.27 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
{
"name": "mtrdesign/s3-logs-parser",
"type": "library",
"description": "S3 Logs Parser",
"keywords": [
"s3",
"log parser",
"analytics"
],
"homepage": "https://mtr-design.com",
"support": {
"issues": "https://github.com/mtrdesign/s3-logs-parser/issues",
"source": "https://github.com/mtrdesign/s3-logs-parser"
},
"authors": [
{
"name": "MTR Design",
"email": "[email protected]",
"homepage": "https://mtr-design.com"
}
],
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"aws/aws-sdk-php": "^3.100",
"nesbot/carbon": "^2.19"
},
"require-dev": {
"mockery/mockery": "^1.2",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^3.4"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"S3LogsParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
],
"phpcs": "phpcs -p --standard=PSR2 src tests",
"phpstan": "phpstan analyse --level 7 src",
"phpunit": "phpunit --coverage-clover=coverage.xml --verbose"
}
}