php-makephar/makephar.sdl.dist

33 lines
767 B
Plaintext
Raw Normal View History

2017-01-10 15:26:49 +00:00
// 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";
2017-02-12 01:32:17 +00:00
// Phar metadata
metadata {
generator "MakePhar/2.0";
channel_stable "http://dist.noccylabs.info/channels/makephar/stable.json";
channel_beta "http://dist.noccylabs.info/channels/makephar/beta.json";
}
2017-01-10 15:26:49 +00:00
// Select files/dirs to include
include {
dir "vendor";
2017-02-12 01:32:17 +00:00
dir "src" verbatim=true; /* directories and files can be marked verbatim */
2017-01-10 15:26:49 +00:00
}
// Patterns to exclude
exclude {
dir "Tests";
dir ".git";
}
}