Skip to content

Commit

Permalink
Documentation updates
Browse files Browse the repository at this point in the history
  • Loading branch information
andersevenrud committed Jun 23, 2017
1 parent 2e9b267 commit 9b24bcc
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 297 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,2 +1,3 @@
*.sw*
vendor/
composer.lock
9 changes: 6 additions & 3 deletions README.md
@@ -1,6 +1,6 @@
# API Interface for 1881
# API Library for 1881

A simple PHP interface to communicate with 1881's API.
A simple PHP library to communicate with 1881's API.

Uses JWT and Guzzle.

Expand All @@ -14,6 +14,8 @@ composer require andersevenrud/1881

## Examples

Supports all API methods provided, example to look up person:

```php
use DM1881\DM1881;

Expand All @@ -28,7 +30,8 @@ var_dump($client->searchPerson('ola bull'));;

## Changelog

* **0.5** - Initial release
* **0.5.1** - Updated documentation
* **0.5.0** - Initial release

## License

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -2,7 +2,7 @@
"name": "andersevenrud/1881",
"description": "API Interface for 1881",
"license": "MIT",
"version": "0.5",
"version": "0.5.1",
"authors": [
{
"name": "Anders Evenrud",
Expand Down
291 changes: 0 additions & 291 deletions composer.lock

This file was deleted.

2 changes: 1 addition & 1 deletion src/DM1881/DM1881.php
Expand Up @@ -37,7 +37,7 @@
use InvalidArgumentException;

/**
* 1881 API Interface
* 1881 API Library
* @author Anders Evenrud <andersevenrud@gmail.com>
* @link https://developer.1881.no/hc/no/sections/203250705-Dokumentasjon
* @version 0.5
Expand Down
2 changes: 1 addition & 1 deletion src/DM1881/DM1881Result.php
Expand Up @@ -28,7 +28,7 @@
use stdClass;

/**
* 1881 API Interface - Result Object
* 1881 API Library - Result Object
* @author Anders Evenrud <andersevenrud@gmail.com>
* @link https://developer.1881.no/hc/no/sections/203250705-Dokumentasjon
* @version 0.5
Expand Down

0 comments on commit 9b24bcc

Please sign in to comment.