From f79940a3455b264f82acfc51b9dbbf60e56a1e93 Mon Sep 17 00:00:00 2001 From: Ben Peachey Date: Thu, 11 Jan 2024 13:45:48 +0100 Subject: [PATCH] Add "script" entry to run project in composer.json. --- composer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/composer.json b/composer.json index 2fafbb5..8300617 100644 --- a/composer.json +++ b/composer.json @@ -17,5 +17,8 @@ "psr-4": { "Potherca\\CrossReference\\HelloWorld\\": "src/" } + }, + "scripts": { + "start": "php -S 0.0.0.0:8080 -t web index.php" } }