devgeniem / wp-safe-fast-and-clean-collection
This is a composer metapackage which includes WordPress plugins that make your site safer, faster and cleaner.
Installs: 6 289
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 7
Forks: 0
Open Issues: 1
Type:metapackage
Requires
- aucor/dynamic-mo-loader: *
- devgeniem/better-wp-install-dropin: *
- devgeniem/wp-core-blocker: *
- devgeniem/wp-core-fixes: *
- devgeniem/wp-define-more: *
- devgeniem/wp-no-admin-ajax: *
- devgeniem/wp-readonly-options: *
- devgeniem/wp-sanitize-accented-uploads: *
- johnpbloch/wordpress: >=4.6.0
- roots/wp-password-bcrypt: ^1.0
This package is auto-updated.
Last update: 2024-10-20 15:26:54 UTC
README
WordPress Dropin & Plugin Collection: Safe, Fast & Clean WordPress
This is WordPress plugin and dropin collection which enhances WordPress in multiple ways.
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-safe-fast-and-clean-collection
Guidelines
We only want to add minimal plugins which enhance small part of WordPress.
WordPress should expose as little as possible about itself and plugins
- All unneccessary html comments and headers should be stripped away.
WordPress shouldn't make any additional requests to wordpress.org or 3rd party services
- WordPress should disable anything related to updates of core/themes/plugins.
- WordPress shouldn't create unneccessary requests which either slow the page down or use cpu cycles without any additional value
Cache as much as possible
- Caching reduces load and allows us to create faster sites
Avoid situations where users can accidentally create errors
WordPress core development moves a bit slower with some enhancements. We will add plugins that provide fixes for problems like accented file uploads into this collection. Once those features or fixes are not needed anymore we will disable them from this package.
Allow developers to define as much settings as possible in wp-config.php
Too many plugins have only wp-admin settings pages. We believe that most of the settings belong into code rather than the database.
WordPress shouldn't install or contain unneccessary example data
- Core installation should create minimal amount of content
- Plugins shouldn't have example content when possible
Requirements
-
= PHP 7.0
- WordPress
- Redis server for object caching
- 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