PHPackages                             wp-digital/wp-start-up - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. wp-digital/wp-start-up

ActiveWordpress-muplugin

wp-digital/wp-start-up
======================

WPStartUp plugin does initial setup after WordPress installation. Create projects in Bugsnag and Pingdom.

1.0.0(2y ago)02.5k↓100%22GPL-2.0+PHPPHP &gt;=7.4

Since Jul 25Pushed 2y ago8 watchersCompare

[ Source](https://github.com/wp-digital/wp-start-up)[ Packagist](https://packagist.org/packages/wp-digital/wp-start-up)[ RSS](/packages/wp-digital-wp-start-up/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (2)Versions (3)Used By (2)

WPStartUp: Simplifying Initial WordPress Setup
==============================================

[](#wpstartup-simplifying-initial-wordpress-setup)

### Description

[](#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

[](#installation)

There are two convenient ways to install WPStartUp:

1. **Using Composer:**The recommended method is to use [Composer](https://getcomposer.org/). Simply run the following command:

    ```
    composer require wp-digital/wp-start-up
    ```

    WPStartUp will be installed as a [Must Use Plugin](https://codex.wordpress.org/Must_Use_Plugins) by default. If you wish to customize the installation path, you can control it using `extra.installer-paths` in your `composer.json`.
2. **Using Git Clone:**Alternatively, you can clone the repository directly into the `wp-content/mu-plugins/` or `wp-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](https://make.wordpress.org/cli/handbook/): `wp plugin activate wp-start-up`.

### Configuration

[](#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

[](#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.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 92.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1019d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5b52f801a1cdb5f6622a9e49f4359717b1808ca23e948a243eae225f55e2c7eb?d=identicon)[smfb-dinamo](/maintainers/smfb-dinamo)

---

Top Contributors

[![zhyian](https://avatars.githubusercontent.com/u/8911089?v=4)](https://github.com/zhyian "zhyian (12 commits)")[![kuliebiakin](https://avatars.githubusercontent.com/u/6066592?v=4)](https://github.com/kuliebiakin "kuliebiakin (1 commits)")

---

Tags

wordpressbugsnagpluginssetupintegrationsinitialpingdom

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/wp-digital-wp-start-up/health.svg)

```
[![Health](https://phpackages.com/badges/wp-digital-wp-start-up/health.svg)](https://phpackages.com/packages/wp-digital-wp-start-up)
```

###  Alternatives

[tgmpa/tgm-plugin-activation

TGM Plugin Activation is a PHP library that allows you to easily require or recommend plugins for your WordPress themes (and plugins).

1.8k222.5k13](/packages/tgmpa-tgm-plugin-activation)[wpbones/wpbones

WordPress framework for Laravel developers

1714.8k1](/packages/wpbones-wpbones)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
