-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathcomposer.json
54 lines (54 loc) · 1.46 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": "laravel/browser-kit-testing",
"description": "Provides backwards compatibility for BrowserKit testing in the latest Laravel release.",
"keywords": ["laravel", "testing"],
"license": "MIT",
"authors": [
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
}
],
"require": {
"php": "^7.2",
"ext-dom": "*",
"ext-json": "*",
"illuminate/contracts": "^7.0|^8.0",
"illuminate/database": "^7.0|^8.0",
"illuminate/http": "^7.0|^8.0",
"illuminate/support": "^7.0|^8.0",
"illuminate/testing": "^7.0|^8.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.5|^9.0",
"symfony/console": "^5.0",
"symfony/css-selector": "^5.0",
"symfony/dom-crawler": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/http-kernel": "^5.0"
},
"require-dev": {
"laravel/framework": "^7.0|^8.0"
},
"autoload": {
"psr-4": {
"Laravel\\BrowserKitTesting\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laravel\\BrowserKitTesting\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "6.x-dev"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}