wp-digital/wp-start-up
Composer 安装命令:
composer require wp-digital/wp-start-up
包简介
WPStartUp plugin does initial setup after WordPress installation. Create projects in Bugsnag and Pingdom.
README 文档
README
Description
WPStartUp is a powerful tool that streamlines the initial setup process after installing WordPress. It enables you to effortlessly create projects in Bugsnag and Pingdom, enhancing your website's performance and monitoring capabilities.
Installation
There are two convenient ways to install WPStartUp:
-
Using Composer: The recommended method is to use Composer. Simply run the following command:
composer require wp-digital/wp-start-up
WPStartUp will be installed as a Must Use Plugin by default. If you wish to customize the installation path, you can control it using
extra.installer-pathsin yourcomposer.json. -
Using Git Clone: Alternatively, you can clone the repository directly into the
wp-content/mu-plugins/orwp-content/plugins/directory. Follow these steps:cd wp-content/plugins/ git clone git@github.com:wp-digital/wp-start-up.git cd wp-start-up/ composer install
If you installed the plugin as a regular plugin, activate WPStartUp from the Plugins page in your WordPress dashboard or use WP-CLI: wp plugin activate wp-start-up.
Configuration
To configure WPStartUp, add the following constants to your wp-config.php file:
define( 'BUGSNAG_TOKEN', '' ); define( 'BUGSNAG_PROJECT', '' ); define( 'PINGDOM_TOKEN', '' ); define( 'PINGDOM_PROJECT', '' );
Please note that defining the BUGSNAG_API_KEY constant means the Bugsnag project is already created, and the plugin will not create a new one.
Usage
WPStartUp automatically creates projects in Bugsnag and Pingdom, boosting your website's performance monitoring capabilities. Should you wish to extend its functionality with new integrations, use the wp_start_up_integrations hook:
add_filter( 'wp_start_up_integrations', function( array $integrations ): array { $integrations[] = new YourCustomIntegration(); return $integrations; } );
Please ensure that your integration implements the WPD\WPStartUp\Interfaces\IntegrationInterface interface.
By default, WPStartUp stores plugin settings in the WordPress options table. If you prefer a custom storage solution, use the wp_start_up_default_storage filter:
add_filter( 'wp_start_up_default_storage', function(): \WPD\WPStartUp\Interfaces\StorageInterface { return new YourCustomStorage(); } );
Again, ensure that your custom storage implements the \WPD\WPStartUp\Interfaces\StorageInterface interface.
Additionally, WPStartUp uses the native wp_remote_request function to send API requests. If you want to use a different approach, you can modify this behavior using the wp_start_up_default_sender filter:
add_filter( 'wp_start_up_default_sender', function(): \WPD\WPStartUp\Interfaces\SenderInterface { return new YourCustomSender(); } );
Similarly, your custom sender should implement the \WPD\WPStartUp\Interfaces\SenderInterface interface.
With WPStartUp, you have the freedom to tailor your WordPress setup and integrate it seamlessly with other services, ensuring a smooth and efficient website management experience.
wp-digital/wp-start-up 适用场景与选型建议
wp-digital/wp-start-up 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.64k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 07 月 25 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「plugins」 「wordpress」 「bugsnag」 「pingdom」 「setup」 「integrations」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 wp-digital/wp-start-up 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 wp-digital/wp-start-up 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 wp-digital/wp-start-up 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Bugsnag log engine for CakePHP.
Log errors/exceptions to Bugsnag.
Yii1 bugsnag error handler
Bugsnag integration for Monolog and Symfony.
Guzzle middleware that logs Bugsnag breadcrumbs
Bugsnag Notifier for Laminas
统计信息
- 总下载量: 2.64k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 21
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0
- 更新时间: 2023-07-25