Skip to content

Commit cd7bad3

Browse files
committed
chore: removed more occurences of "headless"
1 parent 6bad5a5 commit cd7bad3

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

plugins/wp-graphql-webhooks/.env.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ WORDPRESS_DB_USER=${DB_USER}
3535
WORDPRESS_DB_PASSWORD=${DB_PASSWORD}
3636
WORDPRESS_DB_NAME=${DB_NAME}
3737

38-
PLUGIN_SLUG=wp-graphql-headless-webhooks
38+
PLUGIN_SLUG=wp-graphql-webhooks

plugins/wp-graphql-webhooks/.gitattributes

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/docs export-ignore
77
/phpstan export-ignore
88
/tests export-ignore
9-
/wp-graphql-headless-webhooks export-ignore
9+
/wp-graphql-webhooks export-ignore
1010

1111
/.coveralls export-ignore
1212
/.distignore export-ignore
@@ -18,4 +18,4 @@
1818
/composer.lock export-ignore
1919
/phpstan.neon.dist export-ignore
2020
/phpunit.xml.dist export-ignore
21-
/wp-graphql-headless-webhooks.php export-ignore
21+
/wp-graphql-webhooks.php export-ignore

plugins/wp-graphql-webhooks/bin/install-test-env.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,12 @@ setup_file_permissions() {
144144

145145
setup_plugin() {
146146
if [ "${SKIP_WP_SETUP}" = "true" ]; then
147-
echo -e "$(warning_message "Skipping wp-graphql-headless-webhooks installation...")"
147+
echo -e "$(warning_message "Skipping wp-graphql--webhooks installation...")"
148148
return 0
149149
fi
150150

151151
# Add this repo as a plugin to the repo
152-
if [ ! -d $WORDPRESS_ROOT_DIR/wp-content/plugins/wp-graphql-headless-webhooks ]; then
152+
if [ ! -d $WORDPRESS_ROOT_DIR/wp-content/plugins/wp-graphql-webhooks ]; then
153153
echo -e "$(status_message "Symlinking the plugin to the WordPress plugins directory...")"
154154

155155
cd "$ORIGINAL_PATH"

plugins/wp-graphql-webhooks/docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ services:
44
app:
55
depends_on:
66
- app_db
7-
image: wp-graphql-headless-webhooks:latest-wp${WP_VERSION-6.0}-php${PHP_VERSION-8.0}
7+
image: wp-graphql-webhooks:latest-wp${WP_VERSION-6.0}-php${PHP_VERSION-8.0}
88
volumes:
9-
- '.:/var/www/html/wp-content/plugins/wp-graphql-headless-webhooks'
9+
- '.:/var/www/html/wp-content/plugins/wp-graphql-webhooks'
1010
- './.log/app:/var/log/apache2'
1111
env_file:
1212
- .env
@@ -34,9 +34,9 @@ services:
3434
testing:
3535
depends_on:
3636
- app_db
37-
image: wp-graphql-headless-webhooks-testing:latest-wp${WP_VERSION-5.9}-php${PHP_VERSION-8.0}
37+
image: wp-graphql-webhooks-testing:latest-wp${WP_VERSION-5.9}-php${PHP_VERSION-8.0}
3838
volumes:
39-
- '.:/var/www/html/wp-content/plugins/wp-graphql-headless-webhooks'
39+
- '.:/var/www/html/wp-content/plugins/wp-graphql-webhooks'
4040
- './.log/testing:/var/log/apache2'
4141
env_file:
4242
- .env

0 commit comments

Comments
 (0)