Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ Using the library is as easy as installing it:

```php
<?php

include_once './vendor/autoload.php';
use Transmission\Transmission;

$transmission = new Transmission();
Expand Down Expand Up @@ -85,6 +87,7 @@ connect to another host or post you can pass those to the constructor of the

```php
<?php
include_once './vendor/autoload.php';
use Transmission\Transmission;

$transmission = new Transmission('example.com', 33);
Expand All @@ -110,6 +113,7 @@ authenticate using the `Client` class:

```php
<?php
include_once './vendor/autoload.php';
use Transmission\Client;
use Transmission\Transmission;

Expand All @@ -124,6 +128,7 @@ you can modify the global download limit or change the download directory:

```php
<?php
include_once './vendor/autoload.php';
use Transmission\Transmission;

$transmission = new Transmission();
Expand Down