PHPackages                             superbalist/laravel4-storage - 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. [File &amp; Storage](/categories/file-storage)
4. /
5. superbalist/laravel4-storage

AbandonedArchivedLibrary[File &amp; Storage](/categories/file-storage)

superbalist/laravel4-storage
============================

A filesystem abstraction library for Laravel 4

1.1.1(4y ago)426.0k↑61.5%3[1 issues](https://github.com/Superbalist/laravel4-storage/issues)MITPHPPHP &gt;=5.5.0

Since Feb 1Pushed 3y ago6 watchersCompare

[ Source](https://github.com/Superbalist/laravel4-storage)[ Packagist](https://packagist.org/packages/superbalist/laravel4-storage)[ RSS](/packages/superbalist-laravel4-storage/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (2)Dependencies (6)Versions (7)Used By (0)

laravel4-storage
================

[](#laravel4-storage)

A filesystem abstraction library for Laravel 4

[![Author](https://camo.githubusercontent.com/abd4e3e2e71081ad01ef09a60c49d70c5e0677497f38918e740703cd02605078/687474703a2f2f696d672e736869656c64732e696f2f62616467652f617574686f722d40737570657262616c6973742d626c75652e7376673f7374796c653d666c61742d737175617265)](https://twitter.com/superbalist)[![StyleCI](https://camo.githubusercontent.com/4f58415209375bcff522acb22b74b681c5a904f3a19464cc47279a9cfbbf44a9/68747470733a2f2f7374796c6563692e696f2f7265706f732f35303833393231332f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/50839213)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)[![Packagist Version](https://camo.githubusercontent.com/0f5b885838eaca3e36a02686608fddb76a148c7a80e8ee265d48d0597a5106c1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f737570657262616c6973742f6c61726176656c342d73746f726167652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/superbalist/laravel4-storage)[![Total Downloads](https://camo.githubusercontent.com/ce0736810ff0a227b5f96ad53857464e889f352b9fe6349447cc1ddd04cd5504/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f737570657262616c6973742f6c61726176656c342d73746f726167652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/superbalist/laravel4-storage)

This package brings a filesystem abstraction layer to Laravel 4. This is an organic feature of Laravel 5 which uses the flysystem package under the hood. Please note that this is not a like-for-like version of the Laravel 5 package and that there may be suttle differences in configuration and method names. We're looking to make this package identical in a future major version to make the Laravel 4 -&gt; 5 upgrade less painful.

Supported Adapters
------------------

[](#supported-adapters)

- Local
- Rackspace (Cloud Files)
- Amazon Web Services (S3)
- Google Cloud

Installation
------------

[](#installation)

```
composer require superbalist/laravel4-storage
```

Register the service provider in app.php

```
'providers' => array(
    'Superbalist\Storage\StorageServiceProvider',
)
```

Register the facade in app.php

```
'aliases' => array(
    'Storage' => 'Superbalist\Storage\StorageFacade',
)
```

Create a storage.php config file.

```
