-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
59 lines (59 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
{
"name": "php-vcr/vcr-bundle",
"type": "symfony-bundle",
"description": "Integrates php-vcr into Symfony and its web profiler.",
"license": "MIT",
"authors": [
{
"name": "Kévin Gomez",
"email": "[email protected]"
},
{
"name": "Daniel Hürtgen",
"email": "[email protected]"
},
{
"name": "Simon Hübner",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.2|^8",
"php-vcr/php-vcr": "^1.5",
"symfony/config": "^4|^5",
"symfony/browser-kit": "^4|^5",
"symfony/dependency-injection": "^4|^5",
"symfony/filesystem": "^4|^5",
"symfony/event-dispatcher": "^4|^5",
"symfony/framework-bundle": "^4.4|^5.4",
"symfony/http-foundation": "^4|^5",
"symfony/http-kernel": "^4.4|^5",
"symfony/polyfill-php80": "^1.16",
"symfony/yaml": "^4|^5"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.4",
"neutron/temporary-filesystem": "^3",
"phpunit/phpunit": "^8.5|^9.5",
"symfony/phpunit-bridge": "^4.4|^5.4"
},
"autoload": {
"psr-4": {
"VCR\\VCRBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VCR\\VCRBundle\\Tests\\Functional\\App\\": "tests/Functional/app",
"VCR\\VCRBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
}
}