-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.08 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
43
44
45
46
47
48
49
{
"name": "rebelcode/wp-http",
"description": "A PSR-18 compliant HTTP client adapter for WordPress",
"keywords": ["wordpress", "http", "client", "psr-18", "psr-7"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Miguel Muscat",
"email": "miguel.muscat@rebelcode.com",
"role": "Developer"
}
],
"provide": {
"psr/http-client-implementation": "1.0"
},
"require": {
"php": ">=7.1",
"psr/http-client": "^1.0",
"rebelcode/psr7": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0 | ^8.0 | ^9.0",
"10up/wp_mock": "^0.4",
"vimeo/psalm": "^4.0",
"webmozart/path-util": "^2.3",
"slevomat/coding-standard": "^6.0",
"johnpbloch/wordpress-core": ">=5.5",
"humanmade/psalm-plugin-wordpress": "^2.0"
},
"autoload": {
"psr-4": {
"RebelCode\\WordPress\\Http\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RebelCode\\WordPress\\Http\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-develop": "0.1.x-dev"
}
}
}