forked from php-vcr/php-vcr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.22 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
{
"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",
"lint": "./vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"fix": "./vendor/bin/php-cs-fixer fix --verbose --diff",
"phpstan": "phpstan analyse -c phpstan.neon --no-progress -vvv"
},
"authors": [
{
"name": "Adrian Philipp",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-curl": "*",
"beberlei/assert": "^3.2.5",
"symfony/yaml": "~2.1|^3.0|^4.0|^5.0",
"symfony/event-dispatcher": "^2.4|^3.0|^4.0|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.4.3",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-beberlei-assert": "^0.12.0",
"thecodingmachine/phpstan-strict-rules": "^0.12",
"sebastian/version": "^1.0.3|^2.0",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"VCR\\": "src/VCR/"
}
}
}