forked from php-vcr/php-vcr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.69 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": "php-vcr/php-vcr",
"description": "Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.",
"license": "MIT",
"scripts": {
"test": "./vendor/bin/phpunit",
"cs": "./vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"cs-fix": "./vendor/bin/php-cs-fixer fix --verbose --diff",
"phpstan": "php -d memory_limit=-1 vendor/bin/phpstan analyse -c phpstan.neon --no-progress -vvv",
"ec": "./vendor/bin/ec"
},
"authors": [
{
"name": "Adrian Philipp",
"email": "[email protected]"
}
],
"require": {
"php": "^8,<8.2|>=8.2.9,<8.3",
"ext-curl": "*",
"beberlei/assert": "^3.2.5",
"symfony/yaml": "^3|^4|^5|^6",
"symfony/event-dispatcher": "^4|^5|^6",
"symfony/event-dispatcher-contracts": "^1|^2|^3"
},
"require-dev": {
"ext-soap": "*",
"guzzlehttp/guzzle": "^7",
"phpunit/phpunit": "^9.5.10",
"mikey179/vfsstream": "^1.6.10",
"phpstan/phpstan": "^1",
"phpstan/phpstan-beberlei-assert": "^1",
"thecodingmachine/phpstan-strict-rules": "^1",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan-phpunit": "^1",
"phpstan/extension-installer": "^1.1",
"editorconfig-checker/editorconfig-checker": "^10.3"
},
"autoload": {
"psr-4": {
"VCR\\": "src/VCR/"
}
},
"autoload-dev": {
"psr-4": {
"VCR\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}