-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.46 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
50
51
52
53
54
55
56
57
58
59
{
"name": "publishing-kit/http-proxy",
"type": "library",
"description": "PSR7-compliant HTTP caching proxy",
"keywords": [
"publishing-kit",
"http-proxy"
],
"homepage": "https://github.com/publishing-kit/http-proxy",
"license": "MIT",
"authors": [
{
"name": "Matthew Daly",
"email": "450801+matthewbdaly@users.noreply.github.com",
"homepage": "https://matthewdaly.co.uk",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"php-http/cache-plugin": "^1.7",
"php-http/httplug": "^2.1",
"php-http/message": "^1.8",
"psr/cache": "^1.0"
},
"require-dev": {
"infection/infection": "^0.15.0",
"mockery/mockery": "^1.3",
"php-coveralls/php-coveralls": "^2.2",
"phpunit/phpunit": ">=8.0",
"squizlabs/php_codesniffer": "^3.0",
"tedivm/stash": "^0.15.2",
"vimeo/psalm": "^4.3"
},
"autoload": {
"psr-4": {
"PublishingKit\\HttpProxy\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests",
"psalm": "psalm"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}