-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.05 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
{
"name": "mingalevme/psr-http-client-stubs",
"description": "Some simple PSR HTTP Client helpful stubs and decorators for testing purposes.",
"type": "library",
"homepage": "https://github.com/mingalevme/psr-http-client-stubs",
"license": "MIT",
"keywords": ["psr", "http-client"],
"provide": {
"psr/http-client-implementation": "1.0"
},
"authors": [
{
"name":"Mikhail Mingalev",
"email":"mingalevme@gmail.com"
}
],
"autoload": {
"psr-4": {
"Mingalevme\\PsrHttpClientStubs\\": "src/"
}
},
"autoload-dev":{
"psr-4": {
"Mingalevme\\Tests\\PsrHttpClientStubs\\": "tests/"
}
},
"require": {
"php": "^8.0",
"psr/http-client": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"vimeo/psalm": "^5.1",
"phpstan/phpstan": "^1.9",
"guzzlehttp/psr7": "^2.4",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
}
}