forked from 0mars/resilient-task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.19 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": "eshta/resilient-task",
"type": "library",
"description": "Resilient Task Runner, A circuit breaker implementation, highly configurable task runner with number of max retries, back-off factor, maximum sleep time, and starting sleep time.",
"keywords": ["resilient", "task", "resilient process", "resilient procedure", "circuit breaker", "circuit-breaker", "circuit breaker pattern"],
"homepage": "https://github.com/eshta/resilient-task",
"license": "MIT",
"authors": [
{
"name": "Omar Shaban",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"squizlabs/php_codesniffer": "^3.0",
"phpmd/phpmd": "^2.7"
},
"autoload": {
"psr-4" : {
"Eshta\\": "src/Eshta"
}
},
"autoload-dev": {
"psr-4": { "Eshta\\ResilientTask\\Tests\\": "tests/" }
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}