Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Soronellas committed May 26, 2014
0 parents commit 368219e
Show file tree
Hide file tree
Showing 46 changed files with 4,102 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/vendor
3 changes: 3 additions & 0 deletions bin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*
!console
!.gitignore
16 changes: 16 additions & 0 deletions bin/console
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env php
<?php

require_once __DIR__.'/../vendor/autoload.php';

set_time_limit(0);

use Symfony\Component\Console\Input\ArgvInput;

$input = new ArgvInput();
$env = $input->getParameterOption(array('--env', '-e'), getenv('SYMFONY_ENV') ?: 'dev');

$app = require __DIR__.'/../src/app.php';
require __DIR__.'/../config/'.$env.'.php';
$console = require __DIR__.'/../src/console.php';
$console->run();
46 changes: 46 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "christian.soronellas/blog-cqrs-es",
"require": {
"ext-mongo": "*",
"buttercup/protects": "dev-master",
"rhumsaa/uuid": "~2.7",
"moontoast/math": "*",
"mathiasverraes/classfunctions": "1.*",
"silex/silex": "~1.2",
"silex/web-profiler": "~1.0",
"symfony/browser-kit": "~2.4",
"symfony/class-loader": "~2.4",
"symfony/config": "~2.4",
"symfony/console": "~2.4",
"symfony/form": "~2.4",
"symfony/css-selector": "~2.4",
"symfony/debug": "~2.4",
"symfony/finder": "~2.4",
"symfony/monolog-bridge": "~2.4",
"symfony/process": "~2.4",
"symfony/security": "~2.4",
"symfony/translation": "~2.4",
"symfony/twig-bridge": "~2.4",
"symfony/validator": "~2.4",
"symfony/serializer": "~2.4"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"mockery/mockery": "0.9.0"
},
"authors": [
{
"name": "Christian Soronellas",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-0": {
"": ["src/"]
}
},
"config": {
"bin-dir": "bin/"
}
}
Loading

0 comments on commit 368219e

Please sign in to comment.