Skip to content

Commit

Permalink
Update composer.json and .gitignore files
Browse files Browse the repository at this point in the history
  • Loading branch information
lavary committed Aug 25, 2016
1 parent e3b29a9 commit 2831378
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/vendor
.env
composer.phar
composer.lock
.DS_Store
35 changes: 30 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,39 @@
{
"name": "lavary/rest-proxy-manager",
"description": "Restful Remote Object Proxies",
"type": "library",
"keywords": [
"ProxyManager",
"RESTful proxy",
"RESTful Remote Object Proxy",
"RESTful ProxyManager Adapter"
],
"homepage": "https://github.com/lavary/rest-remote-proxy",
"license": "MIT",
"authors": [
{
"name": "Reza M. Lavaryan",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/lavary/rest-remote-proxy/issues"
},
"require": {
"php": ">=5.5",
"ocramius/proxy-manager": "^1.0",
"guzzlehttp/guzzle": "^6.2",
"silex/silex": "~2.0",
"doctrine/common": "^2.6",
"zendframework/zend-xmlrpc": "^2.6"
"doctrine/common": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.0"
},
"autoload": {
"psr-4": {
"RemoteProxy//": "src/"
"RemoteProxy\\": "src/"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 2831378

Please sign in to comment.