PHPackages                             ridesoft/azurecloudmap - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. ridesoft/azurecloudmap

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

ridesoft/azurecloudmap
======================

PHP Utility library to interface with Microsoft Windows Azure Cloud API filesystem that works as in Laravel 4.2 as in pure php.

0.4.4(11y ago)155MITPHP

Since Feb 10Pushed 11y ago1 watchersCompare

[ Source](https://github.com/ridesoft/AzureCloudMap)[ Packagist](https://packagist.org/packages/ridesoft/azurecloudmap)[ RSS](/packages/ridesoft-azurecloudmap/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)Dependencies (5)Versions (13)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/2b0457c83d0b3d56664400ad2b18c835fca404bdf83b28d1ff7b4b6ec4649da0/68747470733a2f2f706f7365722e707567782e6f72672f72696465736f66742f617a757265636c6f75646d61702f762f737461626c652e737667)](https://packagist.org/packages/ridesoft/azurecloudmap) [![Total Downloads](https://camo.githubusercontent.com/643c148ee1c927211429c27b27f48c86dc5ba88fd1e78955d85285a5c67c3e02/68747470733a2f2f706f7365722e707567782e6f72672f72696465736f66742f617a757265636c6f75646d61702f646f776e6c6f6164732e737667)](https://packagist.org/packages/ridesoft/azurecloudmap) [![Latest Unstable Version](https://camo.githubusercontent.com/db829c217d97f1defc603719ca826dfde3de7e5cf842581d03b2a46c39b5b7b2/68747470733a2f2f706f7365722e707567782e6f72672f72696465736f66742f617a757265636c6f75646d61702f762f756e737461626c652e737667)](https://packagist.org/packages/ridesoft/azurecloudmap) [![License](https://camo.githubusercontent.com/3e1731f0c81b311b00676e131b97af2af5cbc0da74e2f1953323ca0f583d8ceb/68747470733a2f2f706f7365722e707567782e6f72672f72696465736f66742f617a757265636c6f75646d61702f6c6963656e73652e737667)](https://packagist.org/packages/ridesoft/azurecloudmap)

AzureCloudMap
=============

[](#azurecloudmap)

PHP Utility library to interface with Microsoft Azure Cloud API filesystem that works as in Laravel 4.2 as in pure php.

Here [API](http://ridesoft.github.io/AzureCloudMap)

Use it in Laravel
-----------------

[](#use-it-in-laravel)

### Install

[](#install)

Add to your laravel application composer:

```
"require": {
        "ridesoft/azurecloudmap": "0.4.*"
    },

```

**Due to microsoft/windowsazure dependency with pear you must put your composer.json**

```
"repositories": [
        {
            "type": "pear",
            "url": "http://pear.php.net"
        }

    ],

```

Type composer install or composer update.

In your app/config/app.php add in array providers:

```
'ridesoft\AzureCloudMap\AzureCloudMapServiceProvider'

```

and in array aliases:

```
'AzureIO'           => 'ridesoft\AzureCloudMap\Facades\AzureIO',
'AzureUrl'          => 'ridesoft\AzureCloudMap\Facades\AzureUrl'

```

now publish your configuration with:

```
php artisan config:publish ridesoft/azurecloudmap

```

Set your Azure parameters

Use it pure PHP
---------------

[](#use-it-pure-php)

### Install

[](#install-1)

Add to your laravel application composer:

```
"require": {
        "ridesoft/azurecloudmap": "0.4.*"
    },

```

Type composer install or composer update.

or

just download or clone this library

Functions and API
-----------------

[](#functions-and-api)

All function are documented in the [API](http://ridesoft.github.io/AzureCloudMap)

### Laravel

[](#laravel)

For laravel run function from Ioc Container, using classes in the [API](http://ridesoft.github.io/AzureCloudMap)

For functions in filesystem style, an example:

```
AzureIO::scandir($dir);

```

or for function url style:

```
AzureUrl::download($url);

```

### Pure Php

[](#pure-php)

```
