This repository was archived by the owner on Jan 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (56 loc) · 1.48 KB
/
composer.json
File metadata and controls
57 lines (56 loc) · 1.48 KB
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
{
"name": "beyondcode/dusk-dashboard",
"description": "A beautiful dashboard for your Laravel Dusk tests",
"keywords": [
"beyondcode",
"dusk-dashboard"
],
"homepage": "https://github.com/beyondcode/dusk-dashboard",
"license": "MIT",
"authors": [
{
"name": "Marcel Pociot",
"email": "marcel@beyondco.de",
"homepage": "https://beyondcode.de",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"cboden/ratchet": "^0.4.1",
"clue/buzz-react": "^2.5",
"guzzlehttp/guzzle": "^7.0.1",
"illuminate/console": "5.6.*|5.7.*|5.8.*|6.*|7.*|8.*",
"illuminate/support": "5.6.*|5.7.*|5.8.*|6.*|7.*|8.*",
"laravel/dusk": "^4.0|^5.0|^6.0",
"yosymfony/resource-watcher": "^2.0"
},
"require-dev": {
"larapack/dd": "^1.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"BeyondCode\\DuskDashboard\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BeyondCode\\DuskDashboard\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"BeyondCode\\DuskDashboard\\DuskDashboardServiceProvider"
]
}
}
}