PHPackages                             tacman/amazon-alexa-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. tacman/amazon-alexa-bundle

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

tacman/amazon-alexa-bundle
==========================

Symfony Bundle for amazon alexa skills, forked from maxbeckers/amazon-alexa-bundle

01PHP

Since May 25Pushed 2y agoCompare

[ Source](https://github.com/tacman/amazon-alexa-bundle)[ Packagist](https://packagist.org/packages/tacman/amazon-alexa-bundle)[ RSS](/packages/tacman-amazon-alexa-bundle/feed)WikiDiscussions tac Synced yesterday

READMEChangelogDependenciesVersions (2)Used By (0)

Amazon alexa symfony bundle
===========================

[](#amazon-alexa-symfony-bundle)

This bundle is a simlpe helper to create an Amazon Echo (Alexa) endpoint to your symfony project. You only need to add the Bundle to your project and create some handlers for the alexa requests, configured in [amazon alexa backend](https://developer.amazon.com/alexa).

Install via composer
--------------------

[](#install-via-composer)

Require the bundle via composer:

```
composer require maxbeckers/amazon-alexa-bundle

```

Enable Routing
--------------

[](#enable-routing)

Then add the Bundle endpoint for alexa to `config/routes.yaml`.

```
# config/routes.yaml
maxbeckers_amazon_alexa:
    path:     /alexa/ # the url, the alexa endpoint should be available
    defaults: { _controller: MaxBeckers\AmazonAlexaBundle\Controller\AmazonAlexa::amazonRequest }

```

Create handlers
---------------

[](#create-handlers)

To add Handlers for alexa, create them as a service and tag them with `maxbeckers_amazon_alexa.request_handler`. How to create a handler see [maxbeckers/amazon-alexa-php](https://github.com/maxbeckers/amazon-alexa-php).

```
services:
    example.my_handler:
        class: Example\MyIntentHandler
        arguments:
            - '@maxbeckers_amazon_alexa.response_helper' # ResponseHelper
        tags:
            - 'maxbeckers_amazon_alexa.request_handler'

```

Generate ssml
-------------

[](#generate-ssml)

For ssml use the `maxbeckers_amazon_alexa.ssml_generator` service to create valid ssml.

```
$ssmlGenerator = $this->get('maxbeckers_amazon_alexa.ssml_generator');

// add a message
$ssmlGenerator->say('Hallo World');
$ssml = $ssmlGenerator->getSsml();
// $ssml === 'Hallo World'
```

Development
-----------

[](#development)

composer config repositories.tacman\_alexa '{"type": "path", "url": "/home/tac/g/tacman/amazon-alexa-bundle"}' composer req tacman/amazon-alexa-bundle:\*@dev

###  Health Score

14

—

LowBetter than 1% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity24

Early-stage or recently created project

 Bus Factor1

Top contributor holds 90% 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/21b39551f92ed4143772c622f9e571589c5a72c96ab3c53fe67489ce0d83e806?d=identicon)[tacman1123](/maintainers/tacman1123)

---

Top Contributors

[![maxbeckers](https://avatars.githubusercontent.com/u/11738128?v=4)](https://github.com/maxbeckers "maxbeckers (27 commits)")[![tacman](https://avatars.githubusercontent.com/u/619585?v=4)](https://github.com/tacman "tacman (3 commits)")

### Embed Badge

![Health badge](/badges/tacman-amazon-alexa-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/tacman-amazon-alexa-bundle/health.svg)](https://phpackages.com/packages/tacman-amazon-alexa-bundle)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

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

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k15](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

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

PHPackages © 2026

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