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