PHPackages                             scribble/scribble - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. scribble/scribble

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

scribble/scribble
=================

Publish your blog posts across multiple blogging platforms and sites

v1.0.0(11y ago)16.2k—0%MITPHP

Since Apr 11Pushed 11y ago1 watchersCompare

[ Source](https://github.com/GoScribble/Scribble)[ Packagist](https://packagist.org/packages/scribble/scribble)[ RSS](/packages/scribble-scribble/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (6)Dependencies (1)Versions (9)Used By (0)

Scribble [![Build Status](https://camo.githubusercontent.com/0f9c602e7ada05519113665053eca7f578f7bdbffe7884ca830d3c26dc68aaa0/68747470733a2f2f7472617669732d63692e6f72672f476f5363726962626c652f5363726962626c652e737667)](https://travis-ci.org/GoScribble/Scribble) [![StyleCI](https://camo.githubusercontent.com/f24d177d58a944529e144d0cba6ab1beb9f48ad4e72b578a322abc3c98c8fefd/68747470733a2f2f7374796c6563692e696f2f7265706f732f33333438303636392f736869656c64)](https://styleci.io/repos/33480669) [![SensioLabsInsight](https://camo.githubusercontent.com/5a1f8cbb8421f14c86ce1303943b38a8d8c74b48b75fac0416b802331ce5a9bd/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f61343734343732352d316565362d343738372d613162642d3462653165663565303564382f6d696e692e706e67)](https://insight.sensiolabs.com/projects/a4744725-1ee6-4787-a1bd-4be1ef5e05d8)
================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#scribble---)

Scribble is a library that will connect you and all your blogs in a simple, clean and universal way. With Scribble you can publish your blog posts across multiple blogging platforms, forums and sites.

\#When does Scribble come in handy? Let's say you're an author and you maintain several blogs (a personal blog, one for the book series you author and the publishers blog) if you planned on a book signing tour and you wanted to update all your readers across all three blogs to your progress without having to post three times across the blogs then Scribble could be your savior, doing all the work and publishing your posts automatically across all your sites.

\###Get Scribble Install with composer,

```
composer require scribble/scribble

```

Once installed you will need to get the bridge for the blogging platforms that you want to use, Wordpress, phpBB and Anchor are supported.

\####Wordpress Bridge Download the [Scribble Bridge plugin](https://github.com/GoScribble/Wordpress-Bridge) for Wordpress and copy it to your Wordpress plugin directory, activate it and you are good to go! Scribble will now be able to interface with your Wordpress site.

\####phpBB Bridge Download the [Scribble Bridge plugin](https://github.com/GoScribble/phpBB-Bridge) for phpBB and drop it into your forum's root directory, and that's it.

\####Anchor Bridge Download the [Anchor Bridge plugin](https://github.com/GoScribble/Anchor-Bridge) for Anchor and follow the instructions in the README.

\###Setting up Scribble Rename your Scribble/Config/config.example.php file to config.php, here's an example of the config file set up to work with a Wordpress blog and a phpBB forum.

```
return [

    "Providers" => [

        [

            "name"              => "Wordpress",
            "active"            => true,
            "nickname"          => "myphpblog",
            "url"               => "http://myphpblog.com/blog",
            "username"          => "user",
            "password"          => "pass",
            "provider_class"    => "Wordpress"

        ],

        [

            "name"              => "phpBB",
            "active"            => true,
            "nickname"          => "myforum",
            "url"               => "http://myforum.net/phpBB",
            "username"          => "user",
            "password"          => "pass",
            "default_forum_id"  => 2,
            "provider_class"    => "PhpBB"

        ],

        [

            "name"              => "Anchor",
            "active"            => true,
            "nickname"          => "myanchorblog",
            "url"               => "http://myanchorblog.org",
            "username"          => "user",
            "password"          => "pass",
            "default_cat_id"    => "1",
            "provider_class"    => "Anchor"

        ]

    ],

    "Groups" => [

        "ExampleGroup" => [

            "myphpblog",
            "myforum"

        ]

    ]

]
```

Make sure the nickname is unique to each entry.

\###Making your first post

```
use Scribble\Publisher;
Publisher::all()->create(
    [
        "post_title"    => "Hi Mum",
        "post_content"  => "I'm posting all over the place now!
    ]);
```

\###Other examples of what Scribble can do #####Publish only to certain providers

```
use Scribble\Publisher;
Publisher::only(["myphpblog", "myforum"])->create(
    [
        "post_title"    => "Hello World",
        "post_content"  => "I'm posting all over the place now!
    ]);
```

The "only" method accepts an array of the nicknames of the blogs you want to use, nicknames are set in the Config/config.php file

\#####Publish to a group of providers

```
use Scribble\Publisher;
Publisher::group(["ExampleGroup"])->create(
    [
        "post_title"    => "Hello World",
        "post_content"  => "I'm posting all over the place now!
    ]);
```

The "group" method accepts a group name set in the Config.php file, this will load up a playlist of providers conventiently grouped together under one name.

\#####Change config settings at runtime

```
use Scribble\Publisher;
Publisher::config("myforum", ["default_forum_id" => 4])->only(["myforum"])->create(
    [
        "post_title"    => "Hello World",
        "post_content"  => "I'm posting all over the place now!
    ]);
```

The "config" method allows for changes in the settings during runtime for example when publishing to a phpBB forum you may wish to change the destination forum id from the default setting, above is an example of this. "config" accepts two parameters first, the nickname of the provider found in the Scribble Config/config.php file and second, an array of config settings to be used, the existing ones in the config.php file will be overwritten with these new values.

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 96.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

Every ~1 days

Total

6

Last Release

4027d ago

Major Versions

v0.2.0 → v1.0.02015-05-09

### Community

Maintainers

![](https://www.gravatar.com/avatar/f2601f4cb851c398f486098521a51967da8572b9e6031b15e82798e220ecb760?d=identicon)[jamesk322](/maintainers/jamesk322)

---

Top Contributors

[![jamesk322](https://avatars.githubusercontent.com/u/260736?v=4)](https://github.com/jamesk322 "jamesk322 (52 commits)")[![scrutinizer-auto-fixer](https://avatars.githubusercontent.com/u/6253494?v=4)](https://github.com/scrutinizer-auto-fixer "scrutinizer-auto-fixer (2 commits)")

### Embed Badge

![Health badge](/badges/scribble-scribble/health.svg)

```
[![Health](https://phpackages.com/badges/scribble-scribble/health.svg)](https://phpackages.com/packages/scribble-scribble)
```

PHPackages © 2026

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