-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 983 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 983 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
40
41
{
"name": "free-elephants/static-http-client",
"description": "PSR-18 implementation for work with file fixtures",
"type": "library",
"require": {
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"helmich/phpunit-psr7-assert": "^4.2",
"nyholm/psr7": "^1.3"
},
"suggest": {
"nyholm/psr7": "*"
},
"license": "BSD-3-Clause",
"authors": [
{
"name": "samizdam",
"email": "samizdam@inbox.ru"
}
],
"autoload": {
"psr-4": {
"FreeElephants\\StaticHttpClient\\": [
"src/FreeElephants/StaticHttpClient"
]
}
},
"autoload-dev": {
"psr-4": {
"FreeElephants\\StaticHttpClient\\": [
"tests/FreeElephants/StaticHttpClient"
]
}
},
"config": {
"sort-packages": true
}
}