From 382c058f40b51bce7a99107aa2dca0e7320c29f7 Mon Sep 17 00:00:00 2001 From: Yannoff Date: Sat, 9 Mar 2024 14:14:03 +0100 Subject: [PATCH] Documentation: Fix main entrypoint option name --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bcbd617..fff7d99 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ phpcc --version ``` phpcc \ - -e \ + -e
\ -o \ [-d dir [-d dir ...]] \ [-f file [-f file ...]] \ @@ -47,7 +47,7 @@ phpcc \ Name / Shorthand | Type | Description |Required --------------------|:-----:|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------: `--output`, `-o` | value | The Phar archive output file |y -`--entrypoint`, `-e`| value | The main application entrypoint script |y +`--main`, `-e` | value | The main application entrypoint script |y `--banner`, `-b` | value | Specify the filepath to the legal notice banner
_Will be included in the human-readable part of the stub._ |n `--file`, `-f` | multi | Adds a single file to the archive |n `--dir`, `-d` | multi | Adds a sources directory to the archive
_Possible dir spec formats:
- `$dir` => include all files in directory
- `$dir:$extension` => filter files on a specific extension_ |n