alleyinteractive / create-wordpress-project

A starter structure for the wp-content directory on a new WordPress project.
GNU General Public License v2.0
8 stars 0 forks source link

Issue-95: An Author Name other than Alley Breaks PHP Namespaces #105

Closed anubisthejackle closed 3 months ago

anubisthejackle commented 3 months ago

Summary

This PR addresses the issue described in #95 - Fixes #95

Description of the bug

If an author name other than Alley is used while scaffolding, use statements inside of PHP feature files will break because Alley is replaced in the namespace with the author name provided. This has been fixed by ensuring that the Alley username is not replaced during configuration.

Steps To Reproduce

  1. Run make
  2. Use a different author name such as github
  3. After scaffolding completes note how the use statements inside of PHP feature files has been changed causing things to not work.

Changes Made

Additional Information

No response