Added docs and example config

This commit is contained in:
2017-01-10 16:26:49 +01:00
parent 29edf6e591
commit b7ad437c9d
2 changed files with 123 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
// Define output file here
phar "output.phar" {
// Remove this line to build an executable
library;
// Remove this line to minify source files (recommended9)
verbatim;
// Define the stub called when the phar is executed
stub "src/bootstrap.php";
// Select files/dirs to include
include {
dir "vendor";
dir "src";
}
// Patterns to exclude
exclude {
dir "Tests";
dir ".git";
}
}