From 82031194a2bddf06150bd93288f026c3fee254c4 Mon Sep 17 00:00:00 2001 From: Krzysztof Niziol Date: Wed, 8 Nov 2017 15:01:43 +0100 Subject: [PATCH] composer.json - update name of this package (name of vendor, actually) & use exact version constraint of wiosna-dev/common-library package --- README.md | 14 +++++++++++++- composer.json | 4 ++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a2083e0..8b6a233 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,22 @@ Client of the [LimeSurvey's API](https://manual.limesurvey.org/RemoteControl_2_A ## Installation +In your `composer.json` add address of repository into `repositories` section: + +```json +"repositories": [ + (...) + { + "type": "vcs", + "url": "https://github.com/wiosna-dev/limesurvey-api-client" + } +] +``` + Run [Composer](https://getcomposer.org) to install this package in your project: ```bash - $ composer require wiosna/limesurvey-api-client + $ composer require wiosna-dev/limesurvey-api-client ``` > How to install Composer: https://getcomposer.org/download diff --git a/composer.json b/composer.json index 7c10d15..ffe64ef 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "wiosna/limesurvey-api-client", + "name": "wiosna-dev/limesurvey-api-client", "description": "Client of LimeSurvey API", "type": "library", "license": "MIT", @@ -13,7 +13,7 @@ "require": { "php": ">=5.5.9", "fguillot/json-rpc": "^1.2", - "wiosna/common-library": "~0.0.1" + "wiosna-dev/common-library": "0.0.17" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.2",