Skip to content

Commit 8901a5a

Browse files
committed
Initial version
1 parent e9ffc81 commit 8901a5a

29 files changed

+4355
-6
lines changed

.gitignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
1-
composer.phar
21
/vendor/
3-
4-
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
5-
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
6-
# composer.lock

README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

autoload.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
if ( !file_exists($autoload_file = __DIR__ . '/vendor/autoload.php') ) {
4+
die('Install dependencies with `composer install` to run this script successfully.');
5+
}
6+
7+
$loader = require_once $autoload_file;
8+
$loader->add('Helpers', __DIR__ . '/src');
9+
$loader->add('Controllers', __DIR__ . '/src');

composer.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"require": {
3+
"nimbly/limber": "^1.1",
4+
"nimbly/capsule": "^1.0",
5+
"mongodb/mongodb": "^1.6"
6+
}
7+
}

0 commit comments

Comments
 (0)