-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.4 KB
/
composer.json
File metadata and controls
88 lines (88 loc) · 2.4 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
{
"name": "devoption/beacon",
"description": "Production-ready Docker and Helm support for Laravel applications, with guided installation, Octane integration, and streamlined build/deploy workflows.",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"laravel-package",
"docker",
"helm",
"kubernetes",
"octane",
"deployment"
],
"homepage": "https://github.com/devoption/beacon",
"authors": [
{
"name": "DevOption Labs LLC",
"homepage": "https://github.com/devoption",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/devoption/beacon/issues",
"source": "https://github.com/devoption/beacon"
},
"require": {
"php": "^8.3",
"illuminate/console": "^11.0|^12.0|^13.0",
"illuminate/process": "^11.0|^12.0|^13.0",
"illuminate/support": "^11.0|^12.0|^13.0"
},
"require-dev": {
"laravel/pint": "^1.24",
"orchestra/testbench": "^9.0|^10.0|^11.0",
"pestphp/pest": "^3.8",
"phpunit/phpunit": "^10.5|^11.5"
},
"autoload": {
"psr-4": {
"DevOption\\Beacon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevOption\\Beacon\\Tests\\": "tests/"
}
},
"archive": {
"exclude": [
"/.gitattributes",
"/.github",
"/.phpunit.cache",
"/.gitignore",
"/.releaserc.json",
"/build",
"/docs/RELEASING.md",
"/scripts",
"/node_modules",
"/package-lock.json",
"/package.json",
"/phpunit.xml.dist",
"/tests",
"/vendor"
]
},
"extra": {
"laravel": {
"providers": [
"DevOption\\Beacon\\BeaconServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/pest",
"test-laravel-13-compat": "bash scripts/test-laravel-13-compat.sh",
"validate-package": "@composer validate --strict --no-check-publish",
"validate-package-publish": "@composer validate --strict"
},
"minimum-stability": "stable",
"prefer-stable": true
}