Skip to content

Commit 52222b3

Browse files
committed
readme update
1 parent a92cf9f commit 52222b3

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,32 @@
11
# zoom-api-php-client
22
Zoom.us API v2 client for PHP
3+
4+
### Installation
5+
6+
Add the following repository source to your composer.json:
7+
8+
```
9+
{
10+
"type": "composer",
11+
"url": "https://repository.usabilitydynamics.com"
12+
}
13+
```
14+
15+
Require via composer:
16+
17+
```
18+
composer require usabilitydynamics/zoom-api-php-client:1.0.0
19+
```
20+
21+
Initialize:
22+
23+
```
24+
use UDX\Zoom\Zoom;
25+
$zoom = new Zoom( <api_key>, <secret_key> );
26+
```
27+
28+
Use:
29+
30+
```
31+
$meetings = $zoom->meetings->list( <user_id> );
32+
```

0 commit comments

Comments
 (0)