-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 883 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 883 Bytes
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": "apacheborys/re-try-php",
"description": "Library to operate retries in your php application",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Borys Yermokhin",
"email": "borys_ermokhin@yahoo.com"
}
],
"require": {
"php": "^7.4||^8.0",
"psr/log": "^1.1",
"psr/container": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "9.5.21",
"ext-json": "*",
"ext-pdo": "*",
"vimeo/psalm": "^4.30"
},
"scripts": {
"test": [
"./vendor/bin/psalm",
"php vendor/bin/phpunit tests"
]
},
"autoload": {
"psr-4": {
"ApacheBorys\\Retry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApacheBorys\\Retry\\Tests\\": "tests/"
}
}
}