forked from duncan3dc/dusk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 843 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
{
"name": "duncan3dc/dusk",
"type": "library",
"description": "Use Laravel Dusk without the full Laravel framework",
"keywords": ["laravel", "browser", "engine", "screen", "scraping"],
"homepage": "https://github.com/duncan3dc/dusk",
"license": "Apache-2.0",
"authors": [{
"name": "Craig Duncan",
"email": "[email protected]",
"homepage": "https://github.com/duncan3dc",
"role": "Developer"
}],
"require": {
"laravel/dusk": ">=1.0,<1.2",
"php": "^5.6|^7.0"
},
"require-dev": {
"duncan3dc/object-intruder": "^0.1.0",
"mockery/mockery": "^0.9.5",
"phpunit/phpunit": "^5.5"
},
"autoload": {
"psr-4": {
"duncan3dc\\Laravel\\": "src/",
"duncan3dc\\LaravelTests\\": "tests/"
}
}
}