forked from LinioPay/idle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
86 lines (86 loc) · 2.55 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "liniopay/idle",
"type": "project",
"license": "BSD-3-Clause",
"description": "Job and Queue management",
"keywords": ["linio", "liniopay", "queue", "sqs", "pubsub", "publish", "subscribe", "job", "messaging"],
"autoload": {
"psr-4": {
"LinioPay\\Idle\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"LinioPay\\Idle\\": [
"tests/"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">= 7.2",
"linio/input": "^2.5",
"psr/log": "~1.0",
"psr/container": "~1.0",
"zendframework/zend-stdlib": "^3.2",
"ramsey/uuid": "^3.8"
},
"require-dev": {
"aws/aws-sdk-php": "^3.87",
"friendsofphp/php-cs-fixer": "^2.13",
"google/cloud-pubsub": "^1.18",
"infection/infection": "^0.10.6",
"league/fractal": "^0.17.0",
"michaelmoussa/php-coverage-checker": "^1.1",
"mockery/mockery": "^1.2",
"monolog/monolog": "^1.24",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-mockery": "^0.11.0",
"phpunit/phpunit": "^8.0.0",
"roave/security-advisories": "dev-master",
"sensiolabs/security-checker": "^5.0",
"zendframework/zend-hydrator": "^2.4"
},
"suggest": {
"league/fractal": "Adds support for transformers.",
"aws/aws-sdk-php": "Adds support for AWS SQS",
"google/cloud-pubsub": "Adds support for Google Pub/Sub"
},
"scripts": {
"check": [
"@cs",
"@security-check",
"@test-coverage",
"@test-mutation",
"@static-analysis"
],
"cs": [
"vendor/bin/php-cs-fixer fix --dry-run --ansi -v"
],
"cs-fix": [
"vendor/bin/php-cs-fixer fix --ansi -v"
],
"test": [
"vendor/bin/phpunit --colors=always --no-coverage"
],
"test-coverage": [
"vendor/bin/phpunit --colors=always",
"vendor/bin/php-coverage-checker build/coverage-clover.xml 100"
],
"test-mutation": [
"vendor/bin/infection --only-covered --min-msi=100 --min-covered-msi=100 --coverage=build --ansi"
],
"static-analysis": [
"vendor/bin/phpstan analyse --ansi"
],
"security-check" : [
"vendor/bin/security-checker security:check composer.json"
]
},
"config": {
"sort-packages": true
}
}