Skip to content

Commit

Permalink
Merge pull request #1 from qpautrat/simple_features
Browse files Browse the repository at this point in the history
Begins to implement some basic features.
  • Loading branch information
qpautrat authored Feb 1, 2017
2 parents fcbf2c3 + ae5ab82 commit fbe3576
Show file tree
Hide file tree
Showing 11 changed files with 1,685 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/vendor/
/tests/app/cache/
/tests/app/logs/
27 changes: 27 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "evaneos/burrow-bundle",
"description": "Bundle evaneos/burrow, an AMQP library in PHP, to be easily used with Symfony Standard.",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Quentin",
"email": "quentin.pautrat@gmail.com"
}
],
"autoload": {
"psr-4": { "Evaneos\\BurrowBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests" }
},
"require": {
"symfony/http-kernel": "~3.0",
"evaneos/burrow": "~4.0"
},
"require-dev": {
"symfony/framework-bundle": "~3.0",
"symfony/yaml": "~3.0",
"symfony/console": "~3.0"
}
}
Loading

0 comments on commit fbe3576

Please sign in to comment.