-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
63 lines (63 loc) · 1.4 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
55
56
57
58
59
60
61
62
63
{
"name": "unglud/dusker",
"description": "Stand alone Laravel Dusk test suit, which do not require Laravel framework itself.",
"keywords": [
"laravel",
"testing",
"webdriver"
],
"license": "MIT",
"authors": [
{
"name": "Aleksandr Matrosov",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"prefer-stable": true,
"require": {
"php": ">=7.0",
"composer/composer": "^1.0",
"illuminate/config": "^5.5",
"illuminate/container": "^5.5",
"illuminate/events": "^5.5",
"illuminate/filesystem": "^5.5",
"illuminate/support": "^5.5",
"laravel/dusk": "^2.0",
"phpunit/phpunit": "^6.0",
"symfony/filesystem": "^3.3",
"symfony/http-kernel": "^3.3",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"mikey179/vfsStream": "^1.6",
"mockery/mockery": "^1.0"
},
"scripts": {
"post-install-cmd": [
"Dusker\\CopyFile::copy"
],
"post-update-cmd": [
"Dusker\\CopyFile::copy"
]
},
"extra": {
"copy-file": {
"src/example/": "../../../tests/",
".env.example": "../../../.env.dusk",
"artisan": "../../../artisan"
}
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Dusker\\": "./src/Dusker",
"Illuminate\\Foundation\\Testing\\": "./src/Illuminate/Foundation/Testing",
"Tests\\": "../../../tests"
}
}
}