igorkgg / laravel-filesystem-akamai-netstorage
A Akamai NetStorage filesystem for Laravel.
Package info
github.com/igorkosteski/laravel-filesystem-akamai-netstorage
pkg:composer/igorkgg/laravel-filesystem-akamai-netstorage
13.0.0
2026-07-16 19:18 UTC
Requires
- igorkgg/flysystem-akamai-netstorage: ^3.1.1
- illuminate/filesystem: ^13.0
- illuminate/support: ^13.0
This package is auto-updated.
Last update: 2026-07-16 19:20:36 UTC
README
Akamai NetStorage for Laravel based on igorkgg/flysystem-akamai-netstorage.
Requirement
- Laravel >= 12.0
Installation
$ composer require "igorkgg/laravel-filesystem-akamai-netstorage"
Configuration
<?php return [ 'disks' => [ //... 'akamai' => [ 'driver' => 'akamai', 'key' => env('AKAMAI_KEY'), 'keyName' => env('AKAMAI_KEY_NAME'), 'hostname' => env('AKAMAI_HOSTNAME'), 'cpCode' => env('AKAMAI_CPCODE'), 'basePath' => env('AKAMAI_BASE_PATH', ''), 'baseUrl' => env('AKAMAI_BASE_URL', ''), 'timeout' => env('AKAMAI_TIMEOUT', 300), ], //... ] ];
Usage
Storage::disk('akamai')->put('test.txt', 'Test file');
License
MIT