generated from Dhii/php-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.12 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
{
"name": "wp-oop/http-client",
"description": "A PSR-18 wrapper for the WordPress HTTP API",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Anton Ukhanev",
"email": "xedin.unknown@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4 | ^8.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0.2",
"psr/http-factory-implementation": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0@stable",
"vimeo/psalm": "^5.0",
"webmozart/path-util": "^2.3@stable",
"slevomat/coding-standard": "^6.0",
"johnpbloch/wordpress-core": "6.3",
"php-stubs/wordpress-stubs": "6.3",
"nyholm/psr7": "^1.7",
"brain/monkey": "^2.6.1",
"mikey179/vfsstream": "^1.6.11"
},
"suggest": {
"nyholm/psr7": "A slim and efficient PSR-7 and PSR-17 implementation"
},
"autoload": {
"psr-4": {
"WpOop\\HttpClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WpOop\\HttpClient\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}