jobby.php 600 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. //
  3. // Add this line to your crontab file:
  4. //
  5. // * * * * * cd /path/to/project && php jobby.php 1>> /dev/null 2>&1
  6. //
  7. require_once __DIR__ . '/../vendor/autoload.php';
  8. $jobby = new \Jobby\Jobby();
  9. $jobby->add('CommandExample', array(
  10. 'command' => 'ls',
  11. 'schedule' => '* * * * *',
  12. 'output' => 'logs/command.log',
  13. 'enabled' => true,
  14. ));
  15. $jobby->add('ClosureExample', array(
  16. 'command' => function() {
  17. echo "I'm a function!\n";
  18. return true;
  19. },
  20. 'schedule' => '* * * * *',
  21. 'output' => 'logs/closure.log',
  22. 'enabled' => true,
  23. ));
  24. $jobby->run();