Skip to content

Commit fa6bb79

Browse files
committed
Update links due to repo move.
1 parent 38d246d commit fa6bb79

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ Install
44
===========
55
1. `git clone` your contrib module
66
2. [Add DDEV to your contrib project](https://ddev.readthedocs.io/en/latest/users/project/) if not already added.
7-
3. Run `ddev get weitzman/ddev-drupal-contrib`.
7+
3. Run `ddev get ddev/ddev-drupal-contrib`.
88

99
Commands
1010
============
1111
This project provides the following DDEV container commands.
1212

13-
- [ddev poser](https://github.com/weitzman/ddev-drupal-contrib/blob/main/commands/web/poser). This edits composer.json so that `drupal/core-recommended` becomes a dev dependency. then, it runs `composer install`. It is perfectly acceptable to skip this command and edit the require-dev of composer.json by hand.
14-
- [ddev symlink-project](https://github.com/weitzman/ddev-drupal-contrib/blob/main/commands/web/symlink-project). This symlinks the top level files of your project into web/modules/custom so that Drupal finds your module. This command runs automatically on every `ddev start`. See codebase image below.
13+
- [ddev poser](https://github.com/ddev/ddev-drupal-contrib/blob/main/commands/web/poser). This edits composer.json so that `drupal/core-recommended` becomes a dev dependency. then, it runs `composer install`. It is perfectly acceptable to skip this command and edit the require-dev of composer.json by hand.
14+
- [ddev symlink-project](https://github.com/ddev/ddev-drupal-contrib/blob/main/commands/web/symlink-project). This symlinks the top level files of your project into web/modules/custom so that Drupal finds your module. This command runs automatically on every `ddev start`. See codebase image below.
1515
- `ddev phpunit`. Run phpunit tests on the web/modules/custom directory.
1616
- `ddev nightwatch`. Run nightwatch tests on the web/modules/custom directory.
1717
- `ddev phpcs`. Run phpcs on the web/modules/custom directory.

commands/web/eslint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
#ddev-generated
4-
## Command provided by https://github.com/weitzman/ddev-drupal-contrib
4+
## Command provided by https://github.com/ddev/ddev-drupal-contrib
55
## Description: Run eslint inside the web container
66
## Usage: eslint [flags] [args]
77
## Example: "ddev eslint"

commands/web/expand-composer-json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
#ddev-generated
4-
## Command provided by https://github.com/weitzman/ddev-drupal-contrib
4+
## Command provided by https://github.com/ddev/ddev-drupal-contrib
55
## Description: Add Drupal core and other needed dependencies.
66
## Usage: expand-composer-json [flags] [PROJECT_NAME]
77
## Example: "ddev expand-composer-json ctools"

commands/web/nightwatch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
#ddev-generated
4-
## Command provided by https://github.com/weitzman/ddev-drupal-contrib
4+
## Command provided by https://github.com/ddev/ddev-drupal-contrib
55
## Description: Run nightwatch inside the web container
66
## Usage: nightwatch [flags] [args]
77
## Example: "ddev nightwatch"

commands/web/phpcs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
#ddev-generated
4-
## Command provided by https://github.com/weitzman/ddev-drupal-contrib
4+
## Command provided by https://github.com/ddev/ddev-drupal-contrib
55
## Description: Run phpcs inside the web container
66
## Usage: phpcs [flags] [args]
77
## Example: "ddev phpcs" or "ddev phpcs -n"

commands/web/phpunit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
#ddev-generated
4-
## Command provided by https://github.com/weitzman/ddev-drupal-contrib
4+
## Command provided by https://github.com/ddev/ddev-drupal-contrib
55
## Description: Run phpunit inside the web container
66
## Usage: phpunit [flags] [args]
77
## Example: "ddev phpunit" or "ddev phpunit --stop-on-failure"

commands/web/poser

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
#ddev-generated
4-
## Command provided by https://github.com/weitzman/ddev-drupal-contrib
4+
## Command provided by https://github.com/ddev/ddev-drupal-contrib
55
## Description: Expand composer.json and run composer install.
66
## Usage: poser [flags] [args]
77
## Example: "ddev poser"

commands/web/stylelint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
#ddev-generated
4-
## Command provided by https://github.com/weitzman/ddev-drupal-contrib
4+
## Command provided by https://github.com/ddev/ddev-drupal-contrib
55
## Description: Run stylelint inside the web container
66
## Usage: stylelint [flags] [args]
77
## Example: "ddev stylelint"

commands/web/symlink-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
#ddev-generated
4-
## Command provided by https://github.com/weitzman/ddev-drupal-contrib
4+
## Command provided by https://github.com/ddev/ddev-drupal-contrib
55
## Description: Symlink all root files/dirs into web.modules/custom/[PROJECT_NAME]
66
## Usage: symlink-project [flags] [args]
77
## Example: "ddev symlink-project"

config.contrib.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#ddev-generated
2-
## Command provided by https://github.com/weitzman/ddev-drupal-contrib
2+
## Command provided by https://github.com/ddev/ddev-drupal-contrib
33
hooks:
44
post-start:
55
- exec-host: "[[ -f vendor/autoload.php ]] && ddev symlink-project"

0 commit comments

Comments
 (0)