-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.41 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.41 KB
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
{
"name": "beelab/test-bundle",
"type": "symfony-bundle",
"description": "A test library for Symfony framework",
"keywords": [
"Symfony",
"test"
],
"homepage": "https://github.com/bee-lab",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Massimiliano Arione",
"email": "garakkio@gmail.com"
}
],
"require": {
"php": "^8.2",
"symfony/browser-kit": "^6.4 || ^7.0 || ^8.0",
"symfony/console": "^6.4 || ^7.0 || ^8.0",
"symfony/css-selector": "^6.4 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0",
"symfony/dom-crawler": "^6.4 || ^7.0 || ^8.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.7",
"phpunit/phpunit": "^10.5 || ^11.5 || ^12.3",
"symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0",
"symfony/mime": "^6.4 || ^7.0 || ^8.0",
"symfony/process": "^6.4 || ^7.0 || ^8.0",
"symfony/security-core": "^6.4 || ^7.0 || ^8.0"
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "7.x-dev"
}
},
"autoload": {
"psr-4": {
"Beelab\\TestBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Beelab\\TestBundle\\Tests\\": "tests/"
}
}
}