From 0563a93adf2f49a32301e4554a8c336564bb7d09 Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Tue, 11 Apr 2017 10:09:58 +0200 Subject: [PATCH] Composer environment variables --- .gitignore | 1 + README.md | 6 ++++++ composer-develop.json | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 README.md create mode 100644 composer-develop.json diff --git a/.gitignore b/.gitignore index ea59ac28..128c4f4d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /.buildpath /.project /vendor/ +/composer-develop.lock diff --git a/README.md b/README.md new file mode 100644 index 00000000..3b7c3049 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ + + + +Use develop branch of scores/library + +$ COMPOSER=composer-develop.json composer install \ No newline at end of file diff --git a/composer-develop.json b/composer-develop.json new file mode 100644 index 00000000..acf72690 --- /dev/null +++ b/composer-develop.json @@ -0,0 +1,33 @@ +{ + "name": "scores/webservice", + "description": "Webservice API", + "require": { + "zendframework/zendframework1": "^1.12", + "geshi/geshi": "dev-master", + "league/csv": "^8.1", + "doctrine/dbal": "^2.5", + "mikehaertl/phpwkhtmltopdf": "^2.2", + "guzzlehttp/guzzle": "^6.2", + "monolog/monolog": "^1.22", + "scores/library": "dev-develop" + }, + "repositories": [ + { + "type": "git", + "url": "git@gitlab.factory.insight.doubletrade.com:scores/library.git" + } + ], + "include-path": ["library/"], + "autoload": { + "classmap": [ + "application/", + "library/Application/" + ] + }, + "authors": [ + { + "name": "Scores et Decisions", + "email": "supportdev@scores-decisions.com" + } + ] +}