From 40bccb538ec52c0c3c5330fb075aa12cfdce1fb7 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Mon, 7 Jul 2025 10:00:44 +0900 Subject: [PATCH] docs: improve demo section in README with console examples --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 3387f8f..1810f3b 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,8 @@ composer require koriym/file-upload ## Demo +### Web Demo + To see file upload integration in action: ```bash @@ -66,6 +68,21 @@ php -S localhost:8080 -t demo/ Then visit [http://localhost:8080](http://localhost:8080) in your browser. +### Console Demos + +Run various examples from the command line: + +```bash +# Basic examples with nested objects and DI +php demo/run.php + +# Array processing demo +php demo/ArrayDemo.php + +# CSV file processing with batch operations +php demo/csv/run.php +``` + ## Documentation Comprehensive documentation including design philosophy, AI prompts for development assistance, and sample data examples can be found in the [docs/](docs/) directory.