-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
64 lines (64 loc) · 1.6 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
60
61
62
63
64
{
"name": "doppiogancio/mocked-client",
"description": "A simple way to mock a client",
"type": "library",
"license": "MIT",
"keywords": [
"mock",
"http",
"client",
"testing",
"guzzle",
"php"
],
"require": {
"php": "^8.1",
"league/route": "^5.1.2",
"psr/log": "^2.0|^3.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"ext-json": "*",
"php-http/discovery": "^1.17",
"guzzlehttp/guzzle": "^7.5",
"squizlabs/php_codesniffer": "^3.7",
"slevomat/coding-standard": "^8.11",
"phpstan/phpstan": "^1.10",
"doctrine/coding-standard": "^12.0",
"symfony/var-dumper": "^6.2"
},
"authors": [
{
"name": "Fabrizio Gargiulo",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DoppioGancio\\MockedClient\\": "src/MockedClient"
}
},
"autoload-dev": {
"psr-4": {
"DoppioGancio\\MockedClient\\Tests\\": "tests/"
}
},
"scripts": {
"tests": "phpunit",
"phpstan": "phpstan analyse",
"cs-fix": "phpcbf --standard=Doctrine src/ tests/",
"cs-check": "phpcs --standard=Doctrine src/ tests/",
"code-review": [
"@cs-fix",
"@phpstan",
"@tests"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
}
}