26 lines
463 B
Plaintext
26 lines
463 B
Plaintext
// 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";
|
|
}
|
|
|
|
}
|