Skip to content

Commit 1172caa

Browse files
authored
chore(*): run addon-update-checker.sh (#26)
1 parent be9e285 commit 1172caa

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
## The Issue
22

3-
- #<issue number>
3+
- Fixes #REPLACE_ME_WITH_RELATED_ISSUE_NUMBER
44

55
<!-- Provide a brief description of the issue. -->
66

77
## How This PR Solves The Issue
88

9+
<!-- Describe the key change(s) in this PR that address the issue above. -->
10+
911
## Manual Testing Instructions
1012

13+
<!-- If this PR changes logic, consider adding additional steps or context to the instructions below. -->
14+
1115
```bash
12-
ddev add-on get https://github.com/<user>/<repo>/tarball/<branch>
16+
ddev add-on get https://github.com/ddev/ddev-mongo/tarball/refs/pull/REPLACE_ME_WITH_THIS_PR_NUMBER/head
1317
ddev restart
1418
```
1519

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: tests
22
on:
33
pull_request:
4+
paths-ignore:
5+
- "**.md"
46
push:
5-
branches: [main]
7+
branches: [ main ]
68
paths-ignore:
79
- "**.md"
810

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
This add-on integrates MongoDB and Mongo Express into your [DDEV](https://ddev.com/) project.
1313

14-
It's based on [MongoDB from Docker Hub](https://hub.docker.com/_/mongo?tab=description), [DDEV custom compose files](https://ddev.readthedocs.io/en/stable/users/extend/custom-compose-files/) and [API Platform tutorial](https://api-platform.com/docs/core/mongodb/#enabling-mongodb-support).
14+
It's based on [MongoDB from Docker Hub](https://hub.docker.com/_/mongo?tab=description), [DDEV custom compose files](https://docs.ddev.com/en/stable/users/extend/custom-compose-files/) and [API Platform tutorial](https://api-platform.com/docs/core/mongodb/#enabling-mongodb-support).
1515

1616
## Installation
1717

@@ -25,7 +25,10 @@ After installation, make sure to commit the `.ddev` directory to version control
2525
## Configuration
2626

2727
1. Your project will likely require the [Doctrine MongoDB ODM bundle](https://github.com/doctrine/DoctrineMongoDBBundle)
28-
`ddev composer require doctrine/mongodb-odm-bundle:^4.0.0@beta doctrine/mongodb-odm:^2.0.0@beta`
28+
29+
```bash
30+
ddev composer require doctrine/mongodb-odm-bundle doctrine/mongodb-odm
31+
```
2932

3033
2. In your application `.env` or other client, set the connection string:
3134

install.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pre_install_actions:
55
#ddev-description:Create config.mongo.yaml with webimage_extra_packages in it
66
printf '#ddev-generated\nwebimage_extra_packages: ["php${DDEV_PHP_VERSION}-mongodb"]\n' >.ddev/config.mongo.yaml
77
8-
ddev_version_constraint: ">= v1.24.4"
8+
ddev_version_constraint: '>= v1.24.4'
99

1010
post_install_actions:
1111
- |

0 commit comments

Comments
 (0)