php-makephar/makephar.sdl

26 lines
461 B
Plaintext
Raw Normal View History

2017-01-09 01:24:59 +00:00
phar "makephar.phar" {
// Set stub
stub "src/bootstrap.php";
2017-02-12 01:32:17 +00:00
props exec="props.php";
metadata {
package_name "makephar.application";
package_version prop="APP_VERSION";
update_channel "https://packages.noccylabs.info/channel/makephar/testing.json";
}
2017-01-09 01:24:59 +00:00
// Select files/dirs to include
include {
dir "vendor";
dir "src";
}
exclude {
dir ".git";
2017-02-12 01:32:17 +00:00
dir "Tests";
}
2017-01-09 01:24:59 +00:00
}