Skip to content

Commit

Permalink
work on readme
Browse files Browse the repository at this point in the history
  • Loading branch information
themsaid committed Mar 31, 2017
1 parent 9cad10c commit 3264ae5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "themsaid/forge-sdk",
"description": "Laravel Forge PHP SDK.",
"description": "Laravel Forge PHP SDK (Unofficial)",
"keywords": ["laravel", "forge"],
"license": "MIT",
"authors": [
Expand Down
8 changes: 3 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# Forge PHP SDK

## Installation
# Forge PHP SDK (Unofficial)

To install the SDK in your project you need to require the package via composer:

Expand All @@ -17,7 +15,7 @@ require __DIR__.'/../vendor/autoload.php';
And finally create an instance of the SDK:

```php
$forge = new \Themsaid\Forge\Forge($TOKEN_HERE);
$forge = new Themsaid\Forge\Forge($TOKEN_HERE);
```

## Usage
Expand All @@ -37,7 +35,7 @@ You may also retrieve a single server using:
$server = $forge->server(SERVER_ID_HERE);
```

On multiple actions this SDK supports you may need to pass some parameters, for example when creating a new server:
On multiple actions supported by this SDK you may need to pass some parameters, for example when creating a new server:

```php
$server = $forge->createServer([
Expand Down

0 comments on commit 3264ae5

Please sign in to comment.