1
0

base.class.php 650 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace DebenOldert\AutoDeploy;
  3. ###################################
  4. # #
  5. # DO NOT EDIT THIS FILE #
  6. # Use the settings.class.php file #
  7. # #
  8. ###################################
  9. abstract class Base
  10. {
  11. const name = "AutoDeploy";
  12. const title = "Automated Version Deploy";
  13. const author = "Deben Oldert";
  14. const autostart = false;
  15. const version = "0.1";
  16. const keys = array();
  17. const download_dir = 'download';
  18. const acceptDraft = false;
  19. const acceptPre = false;
  20. }
  21. return Base::name;