-
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) · 971 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 971 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-symfony-bundle",
"description": "Symfony bridge for Retry php library",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"ApacheBorys\\Retry\\SymfonyBridge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApacheBorys\\Retry\\SymfonyBridge\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Borys Yermokhin"
}
],
"scripts": {
"test": [
"./vendor/bin/psalm",
"php vendor/bin/phpunit tests"
]
},
"require": {
"symfony/http-kernel": "^5.4",
"apacheborys/re-try-php": "^0.15.4",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/console": "^5.4",
"vimeo/psalm": "^5.6"
},
"require-dev": {
"nyholm/symfony-bundle-test": "^2.0",
"phpunit/phpunit": "^9.5"
}
}