Go CLI commands moved to core/go-php. This repo now contains the Laravel modular monolith framework (previously php-framework). - Remove all Go files (now in core/go-php) - Add PHP framework: event-driven module loading, lifecycle events - Composer package: core/php - core/php-framework remains as-is for backward compat Co-Authored-By: Virgil <virgil@lethean.io>
1.8 KiB
1.8 KiB
Homebrew
Publish to Homebrew for macOS and Linux package management.
Configuration
publishers:
- type: homebrew
tap: org/homebrew-tap
Options
| Option | Description | Default |
|---|---|---|
tap |
Tap repository (org/homebrew-tap) |
Required |
formula |
Formula name | Project name |
homepage |
Project homepage | Repository URL |
description |
Package description | From project |
license |
License identifier | Auto-detected |
dependencies |
Homebrew dependencies | [] |
Examples
Basic Formula
publishers:
- type: homebrew
tap: host-uk/homebrew-tap
With Dependencies
publishers:
- type: homebrew
tap: host-uk/homebrew-tap
dependencies:
- git
- go
Custom Description
publishers:
- type: homebrew
tap: host-uk/homebrew-tap
description: "CLI for building and deploying applications"
homepage: https://core.host.uk.com
Environment Variables
| Variable | Description |
|---|---|
GITHUB_TOKEN |
Token with repo access to tap (required) |
Setup
-
Create a tap repository:
org/homebrew-tap -
Ensure your
GITHUB_TOKENhas push access to the tap -
After publishing, users install with:
brew tap org/tap brew install myapp
Generated Formula
class Myapp < Formula
desc "CLI for building and deploying applications"
homepage "https://github.com/org/myapp"
version "1.2.3"
license "MIT"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/org/myapp/releases/download/v1.2.3/myapp_darwin_arm64.tar.gz"
sha256 "abc123..."
else
url "https://github.com/org/myapp/releases/download/v1.2.3/myapp_darwin_amd64.tar.gz"
sha256 "def456..."
end
end
def install
bin.install "myapp"
end
end