Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
Fix README type for devroots
Browse files Browse the repository at this point in the history
  • Loading branch information
fredemmott authored Sep 4, 2017
1 parent 7d8e505 commit 59ec885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The following settings are optional:
- `"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.
- `"parser": "ext-factparse"|"definition-finder"` - how to parse files. FactParse is an HHVM extension in 3.18 and above, while DefinitionFinder is a library supporting older versions of HHVM.
- `"devRoot": [ "path/", ...]` - additional roots to only include in dev mode, not when installed as a dependency.
- `"devRoots": [ "path/", ...]` - additional roots to only include in dev mode, not when installed as a dependency.
- `"relativeAutoloadRoot": false` - do not use a path relative to `__DIR__` for autoloading. Instead, use the path to the folder containing `hh_autoload.json` when building the autoload map.

How It Works
Expand Down

0 comments on commit 59ec885

Please sign in to comment.