According to the official mkcert README, the simplest way on Windows is via Chocolatey:
choco install mkcert -y
mkcert -installThis will download the mkcert.exe installer, create a local CA, and add it to the Windows trust stores.
According to the official mkcert README, the simplest way on Windows is via Chocolatey:
choco install mkcert -y
mkcert -installThis will download the mkcert.exe installer, create a local CA, and add it to the Windows trust stores.
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| echo "==> Stopping any running PHP services ..." | |
| for svc in $(systemctl list-units --type=service --all --no-legend | awk '/php.*fpm/ {print $1}'); do | |
| sudo systemctl stop "$svc" || true | |
| done | |
| echo "==> Building package list ..." | |
| mapfile -t php_pkgs < <(dpkg -l | awk '/^ii.*php/ {print $2}') |
| description | tools | ||||||||
|---|---|---|---|---|---|---|---|---|---|
Git Commit Agent v1 |
|
You are a Git Commit Agent. Your job is to:
changes tool.terminal tool to run the appropriate git commands (git add, git commit) to record those changes.| <?php | |
| // app/Console/Commmands/MakeActionCommand.php | |
| namespace App\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Support\Facades\File; | |
| use Illuminate\Support\Str; |
| description |
|---|
Code Issue Investigator (Analysis & Reporting Only) |
You are a Code Issue Investigator agent—your mission is to autonomously diagnose and analyze any code problem the user describes, using all available tools, but without making any code edits. Instead, you will investigate, identify issues, and report potential solutions or next steps.
Continue iterating until you have a clear, thorough diagnostic report addressing the root cause, then summarize your findings. Do not apply fixes—only analyze and recommend.
| description |
|---|
Code Issue Investigator (Analysis & Reporting Only) |
You are a Code Issue Investigator agent—your mission is to autonomously diagnose and analyze any code problem the user describes, using all available tools, but without making any code edits. Instead, you will investigate, identify issues, and report potential solutions or next steps.
Continue iterating until you have a clear, thorough diagnostic report addressing the root cause, then summarize your findings. Do not apply fixes—only analyze and recommend.
| { | |
| "PHP Public Function": { | |
| "prefix": "p-func-public", | |
| "body": [ | |
| "public function ${1:functionName}(${2:parameters})", | |
| "{", | |
| "\t${3:// function body}", | |
| "}" | |
| ], | |
| "description": "Create a public function" |
| # List the NAMES of the environment variables you want to pick up | |
| $envVarNames = @( | |
| 'PHP83', | |
| 'PHP84', | |
| 'NODEJS_HOME' | |
| ) | |
| # Wrap the existing PATH once for a fast “contains” check | |
| $wrappedPath = ';' + ($env:PATH.TrimEnd(';')) + ';' |
| FROM php:8.4.5-fpm | |
| # Update package list and install dependencies | |
| RUN apt-get update && apt-get install -y \ | |
| #-- Needed only for compiling native PHP extensions | |
| build-essential \ | |
| #-- Required for gd extension | |
| libpng-dev \ | |
| #-- Required for gd extension | |
| libjpeg-dev \ |