forked from laravel/dusk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.13 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
{
"name": "uofa/laravel-dusk",
"description": "Laravel Dusk provides simple end-to-end testing and browser automation.",
"keywords": ["laravel", "testing", "webdriver"],
"license": "MIT",
"homepage": "https://laravel.com",
"support": {
"issues": "https://github.com/uofa/laravel-dusk/issues",
"source": "https://github.com/uofa/laravel-dusk"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.4",
"php-webdriver/webdriver": "^1.8.1",
"illuminate/console": "~5.4",
"illuminate/support": "~5.4",
"nesbot/carbon": "~1.20",
"symfony/console": "~3.2",
"symfony/process": "~3.2"
},
"require-dev": {
"mockery/mockery": "^0.9.6",
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"Laravel\\Dusk\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}