# Example script running every day at 5 in the morning
# m h dom mon dow command
0 5 * * * /path/to/your/script.sh && curl "https://diditrun.io/YOURID?name=Your+task+name"
#!/bin/sh
curl "https://diditrun.io/YOURID?name=Your+task+name"
// File app/Console/Kernel.php:
$schedule
->command('artisan:command')
->dailyAt('05:00')
->thenPing("https://diditrun.io/YOURID?name=Your+task+name");
// Note: Using the thenPing($url) feature requires the Guzzle HTTP library.
// You can add Guzzle 5 to your project by adding the following line to your composer.json file:
// "guzzlehttp/guzzle": "~5.0"
laravel 4
file_get_contents('https://diditrun.io/YOURID?name=Your+task+name');