Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions .devcontainer/.env.example

This file was deleted.

2 changes: 0 additions & 2 deletions .devcontainer/.gitignore

This file was deleted.

19 changes: 0 additions & 19 deletions .devcontainer/Dockerfile

This file was deleted.

15 changes: 0 additions & 15 deletions .devcontainer/config/nginx.conf

This file was deleted.

7 changes: 0 additions & 7 deletions .devcontainer/config/php.ini

This file was deleted.

11 changes: 0 additions & 11 deletions .devcontainer/devcontainer.json

This file was deleted.

45 changes: 0 additions & 45 deletions .devcontainer/docker-compose.yml

This file was deleted.

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ web/.htaccess

# Composer
/vendor
/web/app/vendor
auth.json

# PHPUnit/Pest
Expand Down
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ RUN { \
echo "xdebug.log=/tmp/xdebug_remote.log"; \
} > /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini;

# Install composer (just the binary: it runs on this image's PHP, keeping the
# PHP version composer sees identical to the one WordPress runs on)
COPY --from=composer:2 /usr/bin/composer /usr/local/bin/composer

# Install wp-cli
RUN curl -o /bin/wp-cli.phar https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
RUN chmod +x /bin/wp-cli.phar
Expand Down
8 changes: 1 addition & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"require": {
"php": ">=8.5",
"composer/installers": "^2.0",
"htmlburger/carbon-fields": "^3.6",
"oscarotero/env": "^2.0",
"roots/bedrock-autoloader": "^1.0",
"roots/bedrock-disallow-indexing": "^2.0",
Expand All @@ -27,7 +26,6 @@
},
"require-dev": {
"laravel/pint": "^1.0",
"mnsami/composer-custom-directory-installer": "^2.0",
"pestphp/pest": "^4.0",
"wp-plugin/create-block-theme": "*",
"wp-plugin/duplicate-post": "*",
Expand All @@ -48,8 +46,7 @@
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true,
"pestphp/pest-plugin": true,
"mnsami/composer-custom-directory-installer": true
"pestphp/pest-plugin": true
},
"sort-packages": true
},
Expand All @@ -65,9 +62,6 @@
],
"web/app/themes/{$name}/": [
"type:wordpress-theme"
],
"web/app/vendor/{$vendor}/{$name}/": [
"htmlburger/carbon-fields"
]
},
"wordpress-install-dir": "web/wp"
Expand Down
Loading