roots / bedrock

WordPress boilerplate with Composer, easier configuration, and an improved folder structure
https://roots.io/bedrock/
MIT License
6.19k stars 1.17k forks source link

Missing "wp" folder containing the WordPress core #735

Closed yodancristino closed 2 months ago

yodancristino commented 2 months ago

Version

1.24.4

What did you expect to happen?

Expecting the folder to be present based on the Bedrock folder structure from https://roots.io/bedrock/

What actually happens?

It's missing for the directory when installing

Steps to reproduce

Install using Composer

composer create-project roots/bedrock

System info

No response

Log output

No response

Please confirm this isn't a support request.

Yes

retlehs commented 2 months ago

Please head on over to https://discourse.roots.io/ for support

$ composer create-project roots/bedrock

Creating a "roots/bedrock" project at "./bedrock"
Installing roots/bedrock (1.24.4)
  - Installing roots/bedrock (1.24.4): Extracting archive
Created project in /Users/ben/Downloads/test/br/bedrock
Installing dependencies from lock file (including require-dev)
Verifying lock file contents can be installed on current platform.
Package operations: 18 installs, 0 updates, 0 removals
  - Installing roots/wordpress-core-installer (1.100.0): Extracting archive
  - Installing composer/installers (v2.3.0): Extracting archive
  - Installing symfony/polyfill-ctype (v1.30.0): Extracting archive
  - Installing oscarotero/env (v2.1.0): Extracting archive
  - Installing roave/security-advisories (dev-latest bac54e1)
  - Installing roots/bedrock-autoloader (1.0.4): Extracting archive
  - Installing roots/bedrock-disallow-indexing (2.0.0): Extracting archive
  - Installing roots/wordpress-no-content (6.6.1): Extracting archive
  - Installing roots/wordpress (6.6.1)
  - Installing roots/wp-config (1.0.0): Extracting archive
  - Installing roots/wp-password-bcrypt (1.1.0): Extracting archive
  - Installing squizlabs/php_codesniffer (3.9.1): Extracting archive
  - Installing symfony/polyfill-php80 (v1.30.0): Extracting archive
  - Installing symfony/polyfill-mbstring (v1.30.0): Extracting archive
  - Installing phpoption/phpoption (1.9.3): Extracting archive
  - Installing graham-campbell/result-type (v1.1.3): Extracting archive
  - Installing vlucas/phpdotenv (v5.6.1): Extracting archive
  - Installing wpackagist-theme/twentytwentyfour (1.2): Extracting archive
Generating optimized autoload files
15 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
$ cd bedrock
$ tree -L 3
.
├── LICENSE.md
├── README.md
├── composer.json
├── composer.lock
├── config
│   ├── application.php
│   └── environments
│       ├── development.php
│       └── staging.php
├── phpcs.xml
├── vendor
├── web
│   ├── app
│   │   ├── mu-plugins
│   │   ├── plugins
│   │   ├── themes
│   │   └── uploads
│   ├── index.php
│   ├── wp
│   │   ├── index.php
│   │   ├── license.txt
│   │   ├── readme.html
│   │   ├── wp-activate.php
│   │   ├── wp-admin
│   │   ├── wp-blog-header.php
│   │   ├── wp-comments-post.php
│   │   ├── wp-config-sample.php
│   │   ├── wp-cron.php
│   │   ├── wp-includes
│   │   ├── wp-links-opml.php
│   │   ├── wp-load.php
│   │   ├── wp-login.php
│   │   ├── wp-mail.php
│   │   ├── wp-settings.php
│   │   ├── wp-signup.php
│   │   ├── wp-trackback.php
│   │   └── xmlrpc.php
│   └── wp-config.php
└── wp-cli.yml

34 directories, 42 files