Download the PHP package steffjenl/laravel-azure-blob-storage without Composer

On this page you can find all versions of the php package steffjenl/laravel-azure-blob-storage. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-azure-blob-storage

laravel-azure-blob-storage

Build Status

Microsoft Azure Blob Storage integration for Laravel's Storage API

This package uses the new azure storage blob package and extends the AzureBlobStorageAdapter package for specific Laravel functions. You can also use this on frameworks with Flysystem Filesystem support.

Installation

Install the package using composer when using Laravel 9 and higher:

Install the package using composer when using Laravel 8 and lower:

On Laravel versions before 5.5 you also need to add the service provider to config/app.php manually:

Then add this to the disks section of config/filesystems.php:

Finally, add the fields AZURE_STORAGE_NAME, AZURE_STORAGE_KEY and AZURE_STORAGE_CONTAINER to your .env file with the appropriate credentials. Then you can set the azure driver as either your default or cloud driver and use it to fetch and retrieve files as usual.

Configuration

If you use a DSN you can enter your DNS address in the AZURE_STORAGE_URL field

If you want to use a prefix so that you always work in a specific folder, you can use the AZURE_STORAGE_PREFIX field

If you want to use Storage Emulator you can set AZURE_STORAGE_LOCAL_ADDRESS to local. If your storage emulator is on an external machine you can change the AZURE_STORAGE_LOCAL_ADDRESS other than local. When using local the connection string will be UseDevelopmentStorage=true.

Example config for local emulator

Example config for remote emulator


All versions of laravel-azure-blob-storage with dependencies

PHP Build Version
Package Version
Requires league/flysystem-azure-blob-storage Version ^3.8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package steffjenl/laravel-azure-blob-storage contains the following files

Loading the files please wait ....