forked from damsfx/valet-windows
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.33 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.33 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
58
59
60
61
62
63
64
{
"name": "ycodetech/valet-windows",
"description": "A more enjoyable local development experience for Windows. A Windows port of the popular Laravel Valet and a fork of cretueusebiu/valet-windows, with new features.",
"keywords": [
"laravel",
"valet",
"windows"
],
"license": "MIT",
"authors": [
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
},
{
"name": "Adam Wathan",
"email": "adam.wathan@gmail.com"
},
{
"name": "Cretu Eusebiu",
"email": "me@cretueusebiu.com"
},
{
"name": "ycodetech",
"email": "stuart-norman@hotmail.com"
}
],
"autoload": {
"files": [
"cli/includes/compatibility.php",
"cli/includes/facades.php",
"cli/includes/helpers.php"
],
"psr-4": {
"Valet\\": "cli/Valet/"
}
},
"require": {
"php": "^7.4|>=8.0",
"composer/ca-bundle": "^1.5",
"guzzlehttp/guzzle": "^7.9",
"illuminate/collections": "^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/container": "^8.0|^9.0|^10.0|^11.0|^12.0",
"mnapoli/silly": "^1.9",
"phpseclib/phpseclib": "^3.0",
"symfony/polyfill-php80": "^1.31",
"symfony/process": "^4.0|^5.0|^6.0|^7.0",
"symfony/yaml": "^5.0|^6.0|^7.0"
},
"conflict": {
"cretueusebiu/valet-windows": "*"
},
"bin": [
"valet"
],
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}