-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
41 lines (41 loc) · 1.15 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
{
"name": "php-http/vcr-plugin",
"description": "Record your test suite's HTTP interactions and replay them during future test runs.",
"license": "MIT",
"keywords": ["http", "vcr", "plugin", "psr7"],
"homepage": "http://httplug.io",
"authors": [
{
"name": "Gary PEGEOT",
"email": "garypegeot@gmail.com"
}
],
"require": {
"php": "^7.2 || ^8.0",
"guzzlehttp/psr7": "^1.7 || ^2.0",
"php-http/client-common": "^2.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"symfony/filesystem": "^4.0|^5.0|^6.0|^7.0",
"symfony/options-resolver": "^4.0|^5.0|^6.0|^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.2|^5.0|^6.0|^7.0",
"phpstan/phpstan": "^1.0"
},
"autoload": {
"psr-4": {
"Http\\Client\\Plugin\\Vcr\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Http\\Client\\Plugin\\Vcr\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/simple-phpunit",
"test-static": "vendor/bin/phpstan"
},
"prefer-stable": true,
"minimum-stability": "dev"
}