Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
qtsd committed Oct 14, 2016
0 parents commit c88de53
Show file tree
Hide file tree
Showing 8 changed files with 682 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
nbproject/
vendor/
14 changes: 14 additions & 0 deletions bin/console
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/env php
<?php

use Composer\Autoload\ClassLoader;
use SlackCron\SlackCron;

ini_set('display_errors', 1);

/**
* @var ClassLoader $loader
*/
$loader = require_once __DIR__.'/../vendor/autoload.php';

$application = new SlackCron();
15 changes: 15 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "slack-cron",
"autoload": {
"psr-4": {
"SlackCron\\": "src/"
}
},
"require": {
"php": "~5.6",
"symfony/yaml": "~3.0",
"symfony/config": "~3.0",
"symfony/console": "~3.0",
"symfony/process": "~3.0"
}
}
Loading

0 comments on commit c88de53

Please sign in to comment.