PHPackages                             drauta/ovh-object-storage-laravel - 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. drauta/ovh-object-storage-laravel

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

drauta/ovh-object-storage-laravel
=================================

Integration with Ovh object container

181.1k2[1 PRs](https://github.com/drauta/ovh-object-storage-laravel/pulls)PHP

Since Mar 8Pushed 6y ago4 watchersCompare

[ Source](https://github.com/drauta/ovh-object-storage-laravel)[ Packagist](https://packagist.org/packages/drauta/ovh-object-storage-laravel)[ RSS](/packages/drauta-ovh-object-storage-laravel/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependenciesVersions (1)Used By (0)

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

[](#installation)

Install using composer:

```
composer require drauta/ovh-object-storage-laravel "dev-master"
```

add to config/app.php

```
Drauta\OvhObjectStorage\OvhServiceProvider::class,
```

Add the following to the config/filesystem.php

```
'ovh' => [
	'driver'   => 'ovh',
	'username' => 'yourUsername',
	'password' => 'yourPassword',
	'tenantId' => 'yourTeenantId',
	'region'   => 'yourRegion',
	'container'=> 'yourContainer',
	'container_url' => 'containerPublicURL'
],
```

Laravel
-------

[](#laravel)

This package provides an integration with OVH object container.

Usage:

Saves the form file: $filename not mandatory

```
Storage::disk('ovh')->filePut($request->file('file'), $filename = null);
```

Get the file url from config container public URL (for speed optimization, no call is made to OS api):

```
Storage::disk('ovh')->fileGetUrl($filename);
```

Get the file url from container (call to OS api, slower than fileGetUrl() ):

```
Storage::disk('ovh')->fileGet($filename);
```

Return if a file exists (true or false)

```
Storage::disk('ovh')->fileExists($filename);
```

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/57aa22f09b28dada4f1516d4d08cfb4187b332dd361d8bffbee599cfccfcda20?d=identicon)[drauta](/maintainers/drauta)

---

Top Contributors

[![Hoosk](https://avatars.githubusercontent.com/u/4163256?v=4)](https://github.com/Hoosk "Hoosk (6 commits)")[![sede2](https://avatars.githubusercontent.com/u/3251485?v=4)](https://github.com/sede2 "sede2 (6 commits)")

### Embed Badge

![Health badge](/badges/drauta-ovh-object-storage-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/drauta-ovh-object-storage-laravel/health.svg)](https://phpackages.com/packages/drauta-ovh-object-storage-laravel)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
