PHPackages                             mediasilo/phoenix-php-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. mediasilo/phoenix-php-sdk

AbandonedLibrary[API Development](/categories/api)

mediasilo/phoenix-php-sdk
=========================

0.8.1(11y ago)03.0k2[1 issues](https://github.com/mediasilo/phoenix-php-sdk/issues)[2 PRs](https://github.com/mediasilo/phoenix-php-sdk/pulls)PHP

Since Feb 14Pushed 4y ago5 watchersCompare

[ Source](https://github.com/mediasilo/phoenix-php-sdk)[ Packagist](https://packagist.org/packages/mediasilo/phoenix-php-sdk)[ RSS](/packages/mediasilo-phoenix-php-sdk/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (3)Dependencies (2)Versions (74)Used By (0)

[![MediaSilo](https://camo.githubusercontent.com/ff451ee56f0e2fd7052f1f9b0452e6e87b3f7d3476130911291b0c1dc867ca2a/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6d6564696173696c6f2d70686f656e69782d7068702d73646b2f6d6564696173696c6f2d6c6f676f2e6a7067)](https://camo.githubusercontent.com/ff451ee56f0e2fd7052f1f9b0452e6e87b3f7d3476130911291b0c1dc867ca2a/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6d6564696173696c6f2d70686f656e69782d7068702d73646b2f6d6564696173696c6f2d6c6f676f2e6a7067)PHP SDK
=====================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#php-sdk)

#### Overview

[](#overview)

MediaSilo makes it easy to share and collaborate with your team and customers anywhere. Check out our full feature set [here](https://www.mediasilo.com/features.php)!

The SDK is built on top of our REST API. To learn more about our REST API have a look at our documentation [here](http://developers.mediasilo.com/).

#### Requirements

[](#requirements)

The SDK is most easily used with [Composer](https://getcomposer.org). To install Composer:

```
cd
curl -sS https://getcomposer.org/installer | php
```

Check to see that composer has been installed:

```
    php composer.phar --version
```

Install the SDK's dependencies:

```
    php composer.phar install
```

#### Install the SDK into your project

[](#install-the-sdk-into-your-project)

In the root of your project create a composer.json as follows. More info on getting started with composer can be found [here](https://getcomposer.org/doc/00-intro.md).

```
{
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/mdelano/oauth-php"
        }
    ],
    "require" : {
        "mediasilo/phoenix-php-sdk": "0.7.6
    }
}
```

Next, install the SDK using

```
composer install
```

#### What can I do?

[](#what-can-i-do)

The MediaSiloAPI file is a wrapper to everything that the SDK can do for you. Refer to this file any time you want to see what functions are available to you.

[![alt MediaSilo API Methods](https://camo.githubusercontent.com/bf34fca05e4139d54a7a61602160a2dac30e77c93c6da0352ca093f86e112afd/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6d6564696173696c6f2d70686f656e69782d7068702d73646b2f6170694d656e752e6a7067)](https://camo.githubusercontent.com/bf34fca05e4139d54a7a61602160a2dac30e77c93c6da0352ca093f86e112afd/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6d6564696173696c6f2d70686f656e69782d7068702d73646b2f6170694d656e752e6a7067)

#### Sample Usage

[](#sample-usage)

```
