forked from BurningDog/guzzle-url-mock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.41 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
{
"name": "avto-dev/guzzle-url-mock",
"description": "URLs (fixed and regexps-based) mock handler for Guzzle 6/7",
"keywords": [
"guzzle",
"http",
"mock",
"handler"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "tarampampam",
"homepage": "https://github.com/tarampampam"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "~7.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^10.3",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"AvtoDev\\GuzzleUrlMock\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AvtoDev\\GuzzleUrlMock\\Tests\\": "tests/"
}
},
"scripts": {
"phpunit": "@php ./vendor/bin/phpunit --no-coverage --colors=always",
"phpunit-cover": "@php ./vendor/bin/phpunit --coverage-html='./coverage/html'",
"phpstan": "@php ./vendor/bin/phpstan analyze --level max --no-progress --ansi ./src",
"test": [
"@phpstan",
"@phpunit"
],
"test-cover": [
"@phpstan",
"@phpunit-cover"
]
},
"support": {
"issues": "https://github.com/avto-dev/guzzle-url-mock/issues",
"source": "https://github.com/avto-dev/guzzle-url-mock"
}
}