Added docs and example config
This commit is contained in:
@@ -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";
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user