-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.27 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
{
"name": "softonic/guzzle-proxy-middleware",
"type": "library",
"description" : "This package allows you to use a proxy transparently in guzzle.",
"keywords": ["proxy", "guzzle", "middleware"],
"license": "Apache-2.0",
"homepage": "https://github.com/softonic/guzzle-proxy-middleware",
"support": {
"issues": "https://github.com/softonic/guzzle-proxy-middleware/issues"
},
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "^7.0",
"psr/cache": "^1.0|^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.0",
"friendsofphp/php-cs-fixer": "^3.6",
"squizlabs/php_codesniffer": "^3",
"rector/rector": "^0.11.20"
},
"autoload": {
"psr-4": {
"Softonic\\Proxy\\Guzzle\\Middleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Softonic\\Proxy\\Guzzle\\Middleware\\": "tests/"
}
},
"scripts": {
"test": [
"@checkstyle",
"@phpunit"
],
"phpunit": "phpunit --coverage-text",
"checkstyle": [
"php-cs-fixer fix -v --diff --dry-run --allow-risky=yes",
"rector --dry-run"
],
"fix-checkstyle": [
"@php-cs-fixer",
"@rector"
],
"php-cs-fixer": "php-cs-fixer fix -v --diff --allow-risky=yes",
"rector": "rector"
}
}