Updated readme with more info on props

This commit is contained in:
Chris 2017-01-10 15:45:56 +01:00
parent e4a1d27dcb
commit 41ad908bc6
1 changed files with 12 additions and 0 deletions

View File

@ -97,6 +97,18 @@ To evaluate props when building the archive:
props exec="generate-props.php";
The props are defined, and the keys are cast to upper case. Be careful if you
attempt to redefine any of these values from within your project as this will
fail. What you should do is something like:
if (!defined('MYAPP_VERSION')) define('MYAPP_VERSION','dev');
echo "This is MyApp ".MYAPP_VERSION."\n";
This makes sure that you don't try to set an existing define, and also that the
defines generated from props by MakePhar is also available when running the app
from source.
## Options and Tweaks
Boolean options (such as `verbatim` and `library`) will have their value default