devgeniem / wp-security-collection
This is a composer metapackage which includes WordPress plugins for security.
Installs: 1 796
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 7
Forks: 0
Open Issues: 0
Type:metapackage
Requires
- johnpbloch/wordpress: >=4.6.0
- roots/wp-password-bcrypt: ^1.0
- wpackagist-plugin/stream: >=3.1.1
This package is auto-updated.
Last update: 2024-10-20 15:49:31 UTC
README
WordPress Security Plugin Collection
This is WordPress plugin collection which adds security enhancements like audit logs and password hardening.
Reasons
This package was created to handle multiple projects with composer update
. We just include this collection into our composer.json
and stick to the guidelines about which plugins should be included here. WordPress evolves with time and some plugins will propably be pointless at some point, if that happens we will remove those unneccessary plugins.
Installation
$ composer require devgeniem/wp-security-collection
Guidelines
We only want to add minimal plugins which enhance small part of WordPress.
Password hardening
WordPress should require long passwords and store them with secure hashes.
Audit logs
WordPress should produce audit logs which we can use to analyse user actions.
Requirements
-
= PHP 7.0
- WordPress
- Use composer to update your site rather than using WordPress auto updates
Composer.json settings
For correct installation your project should define following installation paths in extra
section:
extra: {
"installer-paths": {
"web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"web/app/plugins/{$name}/": ["type:wordpress-plugin"]
},
"dropin-paths": {
"web/app/": ["type:wordpress-dropin"]
}
}
We use bedrock styled names for wp-content
. Replace web/app
according for your project.
Maintainers
Changelog
License
Respect the licenses of used libraries. This readme and composer are licensed under MIT