Skip to content

Commit

Permalink
Merge pull request #11 from b13/task/add-php-amqp
Browse files Browse the repository at this point in the history
[TASK] Install php-amqp package automatically
  • Loading branch information
ochorocho authored Dec 15, 2024
2 parents dd92a83 + 20a1199 commit 08e7385
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions config.rabbitmq.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#ddev-generated
webimage_extra_packages: ["php${DDEV_PHP_VERSION}-amqp"]
1 change: 1 addition & 0 deletions install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: rabbitmq

project_files:
- docker-compose.rabbitmq.yaml
- config.rabbitmq.yaml
- commands/rabbitmq/
- rabbitmq/config.yaml
- rabbitmq/schema.json
6 changes: 6 additions & 0 deletions tests/test.bats
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ setup() {
[[ $output == *"Virtual host 'ddev-vhost' does not"* ]]
}

@test "See php amqp module loaded" {
run ddev exec "php -m | grep amqp"

[[ $output == "amqp" ]]
}

@test "Remove addon - see files removed" {
ddev get --remove rabbitmq

Expand Down

0 comments on commit 08e7385

Please sign in to comment.