Releases: wecodemore/wpstarter
Releases · wecodemore/wpstarter
v3.0.0-beta.2
Second beta of v3 series.
v2.4.6
Changed
- Allow for 2.* version of Dotenv package.
- Raise PHP requirement to 5.3.9
v2.4.5
Active development of v2 finish here.
v3 enters beta.
Changed
- Reduced platform requirements.
v2.4.4
Fixed
- Warning when no plugins requirements (See #62)
Added
- GitHub meta files (contributing guidelines, issues & PR templates)
- Platform requirements to
composer.json
(See #27)
Changed
- Added documentation for security issue when .env is in root (See #64)
v2.4.3
Fixed
- Templates: Add EOF lines.
Added
Nothing
Changed
- Do not check for required env variables (
DB_NAME
, DB_USER
, DB_PASSWORD
), because password is not mandatory (see #63) and WordPress will fail anyway if can't connect to database.
v2.4.2
Fixed
- Use relative path in
wp-cli.yml
Fixes #65
- Expicitly globalize
$table_prefix
in wp-config.php
Fixes #61
Added
Nothing
Changed
Nothing
v2.4.1
Fixed
- Removed strict types declaration for PHP 5 compat.
Added
Nothing
Changed
Nothing
v2.4.0
Fixed
- Fix variable syntax for
.env
file template.
- Cast whatever we get from
get_option(uninstall_plugins)
to an array, to avoid throwing a warning. See [#36].
- Fix RuntimeException because of
DB_NAME
, DB_USER
, DB_PASSWORD
not set. See [#49].
- Code styles fixes (thanks @GaryJones )
Added
- WP CLI step that adds a
wp-cli.yml
file in the project root. See [#33].
Changed
- Improved
Helpers::addHook()
by using WordPress function when available and loading plugin.php
earlier on WP 4.7+. See [#50].
- Declare strict types in all files.