Skip to content

Commit 88d9655

Browse files
committed
Update README.md
1 parent 3d63cce commit 88d9655

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,16 @@ If you have any questions, please contact [hello@listennotes.com](hello@listenno
4343

4444
## Installation
4545

46-
Install the official composer package of the Listen Notes Podcast API:
46+
Install the official [Composer](http://getcomposer.org/) package of the Listen Notes Podcast API:
4747

4848
```sh
4949
composer require listennotes/podcast-api
5050
```
5151

52+
To use the bindings, use Composer's [autoload](https://getcomposer.org/doc/01-basic-usage.md#autoloading):
53+
```sh
54+
require_once('vendor/autoload.php');
55+
```
5256

5357
### Requirements
5458

@@ -64,7 +68,7 @@ value:
6468

6569
<?php
6670

67-
require_once dirname( __FILE__ ) . '/../vendor/autoload.php';
71+
require_once dirname( __FILE__ ) . '/vendor/autoload.php';
6872

6973
// Boilerplate to make an api call
7074
try {

0 commit comments

Comments
 (0)