Skip to content

Commit

Permalink
checking in new cli application
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Giberson committed Jan 4, 2017
1 parent 43bf86a commit 14d981b
Show file tree
Hide file tree
Showing 7 changed files with 574 additions and 17 deletions.
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,24 @@
"composer/composer": "dev-master",
"symfony/event-dispatcher": "^3.0",
"servo/fluidxml": "1.13",
"codeclimate/php-test-reporter": "^0.3.0"
"codeclimate/php-test-reporter": "^0.3.0",
"symfony/http-kernel": "^3.2",
"symfony/yaml": "~3.2",
"symfony/dependency-injection": "^3.2"
},
"autoload": {
"psr-4": {
"QuickStrap\\": "src"
"Quickstrap\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"QuickStrapUnit\\": "tests/unit"
"QuickstrapUnit\\": "tests/unit"
}
},
"require-dev": {
"phpunit/phpunit": "^5.2",
"mockery/mockery": "^0.9.4",
"mikey179/vfsStream": "^1.6"
},
"bin": [
"bin/quickstrap"
]
}
}
283 changes: 273 additions & 10 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file added config.yml
Empty file.
9 changes: 9 additions & 0 deletions quickstrap.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php
require_once __DIR__ . '/vendor/autoload.php';

use Quickstrap\ConsoleKernel;
use Quickstrap\Application;

$app = new Application(new ConsoleKernel());

$app->run();
Loading

0 comments on commit 14d981b

Please sign in to comment.