forked from LinioPay/http-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.78 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
65
66
67
68
69
{
"name": "kohanaworld/http-mock",
"description": "Mock HTTP requests on the server side in your PHP unit tests, PSR/7 Fork of internations version php: >= 8.2",
"license": "MIT",
"authors": [
{
"name": "Lars Strojny",
"email": "[email protected]"
},
{
"name": "Max Beutel",
"email": "[email protected]"
},
{
"name": "Joshua Eichorn",
"email": "[email protected]"
},
{
"name": "Kohana World Tean",
"email": "[email protected]"
}
],
"require": {
"php": ">= 8.2",
"ext-json": "*",
"symfony/process": "^6.3",
"lstrojny/hmmmath": ">=0.5.0",
"guzzlehttp/guzzle": "^7.8",
"slim/slim": "^4.12",
"friendsofphp/php-cs-fixer": "^3.16",
"charescape/serialize-closure": "^3.8",
"pimple/pimple": "^3.5",
"fig/http-message-util": "^1.1"
},
"require-dev": {
"internations/testing-component": "1.4.0",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"InterNations\\Component\\HttpMock\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InterNations\\Component\\HttpMock\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"lint": [
"php-cs-fixer fix --ansi --verbose --show-progress=estimating"
],
"lint:check": [
"@lint --dry-run"
],
"tests": "phpunit"
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}