-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.57 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.57 KB
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
60
61
{
"name": "artemeon/http-client",
"description": "Thin wrapper for external http client libraries.",
"homepage": "https://github.com/artemeon/http-client#readme",
"license": "MIT",
"type": "library",
"keywords": [
"http",
"client"
],
"scripts": {
"phpstan": "php ./vendor/bin/phpstan analyse --memory-limit=4G",
"pint": "./vendor/bin/pint --test -v",
"pint:fix": "./vendor/bin/pint",
"test": "./vendor/bin/pest",
"test:coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage --min=67.3",
"test:type-coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --type-coverage --min=99.8"
},
"authors": [
{
"name": "Dietmar Simons",
"email": "dietmar.simons@artemeon.de"
}
],
"config": {
"process-timeout": 0,
"allow-plugins": {
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true
}
},
"autoload": {
"psr-4": {
"Artemeon\\HttpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Artemeon\\HttpClient\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.4",
"guzzlehttp/guzzle": "^7.9.2",
"ext-json": "*",
"ext-mbstring": "*",
"psr/log": "^1.1|^2.0|^3.0"
},
"require-dev": {
"laravel/pint": "^1.20.0",
"mockery/mockery": "^1.6",
"mikey179/vfsstream": "1.6.*",
"phpstan/phpstan": "^2.1.2",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-phpunit": "^2.0.4",
"rector/rector": "^2.0.7",
"pestphp/pest": "^v3.7",
"pestphp/pest-plugin-type-coverage": "^3.2"
},
"minimum-stability": "stable"
}