Skip to content

Commit

Permalink
Initial commit:
Browse files Browse the repository at this point in the history
* Application and Container extensions (with duplicated code)
* Specification interface and some implementations
* Lots of weak tests
  • Loading branch information
guiwoda committed Feb 3, 2015
0 parents commit a254a1e
Show file tree
Hide file tree
Showing 24 changed files with 3,419 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tests export-ignore
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea
/vendor
29 changes: 29 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "guiwoda/proxyvel",
"description": "Service proxy for laravel's IoC container",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Guido Contreras Woda",
"email": "[email protected]"
}
],
"require": {
"laravel/framework": "~4.2",
"ocramius/proxy-manager": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"Proxyvel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}
Loading

0 comments on commit a254a1e

Please sign in to comment.