From f9f4db6801f84eb559bb4065306ebe59f039e038 Mon Sep 17 00:00:00 2001 From: Fred Emmott Date: Tue, 7 Feb 2017 21:14:50 -0800 Subject: [PATCH] README markdown fixes --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0c31301..53c5420 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,7 @@ The following settings are optional: - `"extraFiles": ["file1.php"]` - files that should not be autoloaded, but should be `require()`ed by `vendor/hh_autoload.php`. This should be needed much less frequently than under Composer - `"includeVendor": false` - do not include `vendor/` definitions in `vendor/hh_autoload.php` - `"autoloadFilesBehavior": "scan"|"exec"` - whether autoload `files` from vendor should be `scan`ned for definitions, or `exec`uted by `vendor/hh_autoload.php` - `scan` is the default, and generally favorable, but `exec` is needed if you have dependencies that need code to be executed on startup. `scan` is sufficient if your dependencies just use `files` because they need to define things that aren't classes, which is usually the case. + How It Works ============