PHPackages                             wlmaroc/ovh-sms-bundle - 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. [API Development](/categories/api)
4. /
5. wlmaroc/ovh-sms-bundle

ActiveSymfony-bundle[API Development](/categories/api)

wlmaroc/ovh-sms-bundle
======================

OVH SDK integration

09PHP

Since Jun 5Pushed 9y agoCompare

[ Source](https://github.com/wlmaroc/OvhSmsBundle)[ Packagist](https://packagist.org/packages/wlmaroc/ovh-sms-bundle)[ RSS](/packages/wlmaroc-ovh-sms-bundle/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

WlmarocOVHBundle: OVH SDK integration in Symfony
================================================

[](#wlmarocovhbundle-ovh-sdk-integration-in-symfony)

This bundle integrates [OVH's offical PHP SDK](https://github.com/ovh/php-ovh) in [the Symfony framework](http://symfony.com).

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

[](#installation)

Use [Composer](http://getcomposer.org) to install the bundle:

`composer require wlmaroc/ovh-sms-bundle`

Then, update your `app/config/AppKernel.php` file:

```
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new Wlmaroc\OvhSmsBundle\WlmarocOvhSmsBundle(),
            // ...
        );

        return $bundles;
    }
```

Configure the bundle in `app/config/config.yml`:

```
wlmaroc_ovh:
    endpoint_name:      "%ovh_endpoint_name%"
    application_key:    "%ovh_application_key%"
    application_secret: "%ovh_application_secret%"
    consumer_key:       "%ovh_consumer_key%"
```

Finally, update your `app/config/parameters.yml` file to store your OVH API credentials:

```
parameters:
    # ...
    ovh_endpoint_name:      "ovh-eu"
    ovh_application_key:    "MyOvhApplicationKey"
    ovh_application_secret: "MyOvhApplicationSecret"
    ovh_consumer_key:       "MyOvhConsumerKey"
```

Usage
-----

[](#usage)

The bundle automatically registers a `ovh` service in the Dependency Injection Container. That service is an instance of `\Ovh\Api`.

Example usage in a controller:

```
// ...

    public function smsAction()
    {
        // Send a SMS
        $this
            ->get('ovh')
            ->post(
                sprintf('/sms/%s/users/%s/jobs', 'my-service-name', 'my-login'),
                [
                    'message' => 'Si tu veux me parler, envoie-moi un... fax !',
                    'receivers' => '+33612345678',
                    'sender' => 'my-login',
                ]
            )
        ;

        // ...
    }

// ...
}
```

Credits
-------

[](#credits)

Created by \[Web Logiciel Maroc\] ().

###  Health Score

19

—

LowBetter than 9% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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://avatars.githubusercontent.com/u/28718956?v=4)[wlmaroc](/maintainers/wlmaroc)[@wlmaroc](https://github.com/wlmaroc)

---

Top Contributors

[![wlmaroc](https://avatars.githubusercontent.com/u/28718956?v=4)](https://github.com/wlmaroc "wlmaroc (2 commits)")

### Embed Badge

![Health badge](/badges/wlmaroc-ovh-sms-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/wlmaroc-ovh-sms-bundle/health.svg)](https://phpackages.com/packages/wlmaroc-ovh-sms-bundle)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35816.3M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

94452.6k6](/packages/botman-driver-telegram)

PHPackages © 2026

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