Skip to content

Commit 3767bf3

Browse files
Merge pull request #133 from keenlabs/pbuchman-updated-readme
Updated Readme + .gitignore
2 parents 9ae58fe + 5c018d1 commit 3767bf3

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
composer.phar
12
composer.lock
23
vendor

CHANGE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change Log
22
==========
33

4+
VERSION 2.5.14
5+
-------------
6+
* Updated README.md - added basic info regarding local development setup
7+
* composer.phar added to .gitignore file
8+
49
VERSION 2.5.13
510
-------------
611
* Fix for invalid request "Missing required organizationKey" when using createProject

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ $client = KeenIOClient::factory([
7373
]);
7474
```
7575

76+
For more options see [Guzzle Client documentation](http://docs.guzzlephp.org/en/stable/quickstart.html#creating-a-client)
77+
Please notice that _all other options passed to the constructor are used as default request options with every request created by the client_.
78+
7679
#### Configuration can be updated to reuse the same Client:
7780
You can reconfigure the Keen IO Client configuration options through available getters and setters. You can get and set the following options:
7881
`projectId`, `readKey`, `writeKey`, `masterKey`, & `version`.
@@ -406,3 +409,9 @@ at [users.keen.io](http://users.keen.io). We'd love to hear your feedback and id
406409
Contributing
407410
------------
408411
This is an open source project and we love involvement from the community! Hit us up with pull requests and issues.
412+
413+
Local development
414+
-----------------
415+
1. Start with installation of [composer](https://getcomposer.org/download/)
416+
2. Download dependencies: `$ php composer.phar install`
417+
3. You can verify whether tests pass by running `$ vendor/bin/phpunit`

src/Client/KeenIOClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
class KeenIOClient extends GuzzleClient
4242
{
4343

44-
const VERSION = '2.5.13';
44+
const VERSION = '2.5.14';
4545

4646
/**
4747
* Factory to create new KeenIOClient instance.

0 commit comments

Comments
 (0)