From 28313784f7aaec77fc3ae6cdbfc2efd3ce4806b1 Mon Sep 17 00:00:00 2001 From: "M. Reza Lavaryan" Date: Thu, 25 Aug 2016 15:03:43 +0800 Subject: [PATCH] Update composer.json and .gitignore files --- .gitignore | 3 ++- composer.json | 35 ++++++++++++++++++++++++++++++----- 2 files changed, 32 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 9cf676a..2c1fc0c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /vendor -.env +composer.phar +composer.lock .DS_Store \ No newline at end of file diff --git a/composer.json b/composer.json index a5bef63..d69a058 100644 --- a/composer.json +++ b/composer.json @@ -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": "mrl.8081@gmail.com" + } + ], + "support": { + "email": "mrl.8081@gmail.com", + "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 }