-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
74 lines (74 loc) · 1.78 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "orchestra/dusk-updater",
"description": "Updater for Laravel Dusk ChromeDriver binaries",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jonas Staudenmeir",
"email": "[email protected]"
},
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]"
}
],
"bin": [
"dusk-updater"
],
"autoload": {
"psr-4": {
"Orchestra\\DuskUpdater\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Orchestra\\DuskUpdater\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"ext-openssl": "*",
"ext-zip": "*",
"composer-runtime-api": "^2.2",
"composer/semver": "^1.5 || ^3.0",
"guzzlehttp/guzzle": "^7.2",
"symfony/console": "^6.0 || ^7.0",
"symfony/polyfill-ctype": "^1.9",
"symfony/polyfill-php83": "^1.28",
"symfony/process": "^6.0 || ^7.0"
},
"require-dev": {
"laravel/dusk": "^6.0 || ^7.0 || ^8.0",
"laravel/pint": "^1.4",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9.6"
},
"conflict": {
"laravel/dusk": "<6.0.0 || >=9.0.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"scripts": {
"lint": [
"@php vendor/bin/pint",
"@php vendor/bin/phpstan analyse --verbose"
],
"test": "@php vendor/bin/phpunit -c ./ --color",
"ci": [
"@lint",
"@test"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}