php-makephar/makephar.sdl

26 lines
461 B
Plaintext

phar "makephar.phar" {
// Set stub
stub "src/bootstrap.php";
props exec="props.php";
metadata {
package_name "makephar.application";
package_version prop="APP_VERSION";
update_channel "https://packages.noccylabs.info/channel/makephar/testing.json";
}
// Select files/dirs to include
include {
dir "vendor";
dir "src";
}
exclude {
dir ".git";
dir "Tests";
}
}