forked from laravel/sail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.57 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 2.57 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "reyemtech/sail",
"description": "Docker files for running a basic Laravel application.",
"keywords": [
"laravel",
"docker"
],
"license": "MIT",
"support": {
"issues": "https://github.com/reyemtech/sail/issues",
"source": "https://github.com/reyemtech/sail"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
},
{
"name": "ReyemTech",
"email": "contact@reyem.tech"
},
{
"name": "Mario Meyer",
"email": "mario@reyem.tech"
}
],
"require": {
"php": "^8.0",
"illuminate/console": "^9.52.16|^10.0|^11.0|^12.0|^13.0",
"illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0|^13.0",
"illuminate/support": "^9.52.16|^10.0|^11.0|^12.0|^13.0",
"mirazmac/dotenvwriter": "^0.6.0",
"symfony/console": "^6.0|^7.0|^8.0",
"symfony/yaml": "^6.0|^7.0|^8.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0|^11.0",
"phpstan/phpstan": "^2.0"
},
"conflict": {
"laravel/sail": "*"
},
"bin": [
"bin/sail",
"bin/sail-setup",
"bin/sail-wrapper",
"bin/install-sail-wrapper"
],
"autoload": {
"psr-4": {
"Laravel\\Sail\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laravel\\Sail\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Laravel\\Sail\\SailServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"scripts": {
"post-autoload-dump": [
"@php -r \"if (file_exists('artisan')) { passthru('php artisan vendor:publish --provider=\\\"Laravel\\\\Sail\\\\SailServiceProvider\\\" --tag=config'); }\""
],
"post-install-cmd": [
"@php -r \"if (file_exists('vendor/reyemtech/sail/bin/install-sail-wrapper')) { passthru('bash vendor/reyemtech/sail/bin/install-sail-wrapper'); }\""
],
"post-update-cmd": [
"@php -r \"if (file_exists('vendor/reyemtech/sail/bin/install-sail-wrapper')) { passthru('bash vendor/reyemtech/sail/bin/install-sail-wrapper'); }\""
],
"test": [
"phpunit"
],
"test:feature": [
"phpunit tests/Feature"
],
"test:integration": [
"phpunit tests/Integration"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}