PHPackages                             carbon/backenddocument - 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. carbon/backenddocument

ActiveNeos-carbon[Utility &amp; Helpers](/categories/utility)

carbon/backenddocument
======================

A small Fusion prototype to create nice only-backend documents

5.7.0(1y ago)315.8k↑12.5%23GPL-3.0CSSCI passing

Since Oct 9Pushed 1y ago1 watchersCompare

[ Source](https://github.com/CarbonPackages/Carbon.BackendDocument)[ Packagist](https://packagist.org/packages/carbon/backenddocument)[ Fund](https://www.paypal.me/Jonnitto/20eur)[ GitHub Sponsors](https://github.com/jonnitto)[ RSS](/packages/carbon-backenddocument/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (4)Versions (32)Used By (3)

[![Latest stable version](https://camo.githubusercontent.com/8bb836d66af59afe872ecfd8369a2227ae459d75cf17216363a771f0206fca2b/68747470733a2f2f706f7365722e707567782e6f72672f636172626f6e2f6261636b656e64646f63756d656e742f762f737461626c65)](https://packagist.org/packages/carbon/backenddocument) [![Total downloads](https://camo.githubusercontent.com/c6945a60e8874108030f0811a097795180b48dd911c6d41571741a7a58e3f49e/68747470733a2f2f706f7365722e707567782e6f72672f636172626f6e2f6261636b656e64646f63756d656e742f646f776e6c6f616473)](https://packagist.org/packages/carbon/backenddocument) [![License](https://camo.githubusercontent.com/f0049b04a054519930f6a03542e7525072f01b85daba3924bdb7c8cd99a244f8/68747470733a2f2f706f7365722e707567782e6f72672f636172626f6e2f6261636b656e64646f63756d656e742f6c6963656e7365)](https://packagist.org/packages/carbon/backenddocument) [![GitHub forks](https://camo.githubusercontent.com/c037ba7b90903580195af4376b71cab97087d81959cc35fb2d6a0b811f2569f0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f436172626f6e5061636b616765732f436172626f6e2e4261636b656e64446f63756d656e742e7376673f7374796c653d736f6369616c266c6162656c3d466f726b)](https://github.com/CarbonPackages/Carbon.BackendDocument/fork) [![GitHub stars](https://camo.githubusercontent.com/a86f6871e73697639578b85f35c8d4515e515142985ecd690cfcba6eeaf9e023/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f436172626f6e5061636b616765732f436172626f6e2e4261636b656e64446f63756d656e742e7376673f7374796c653d736f6369616c266c6162656c3d5374617273)](https://github.com/CarbonPackages/Carbon.BackendDocument/stargazers) [![GitHub watchers](https://camo.githubusercontent.com/89fe0f8da8262540d20e53829947fde71db899b088208323b3559e4d57117047/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f77617463686572732f436172626f6e5061636b616765732f436172626f6e2e4261636b656e64446f63756d656e742e7376673f7374796c653d736f6369616c266c6162656c3d5761746368)](https://github.com/CarbonPackages/Carbon.BackendDocument/subscription)

Carbon.BackendDocument Package for Neos CMS
===========================================

[](#carbonbackenddocument-package-for-neos-cms)

Two small Fusion prototypes to create nice only-backend documents.

VersionNeosMaintained1.\*3.3.\* - 5.\*✗2.\*4.\* - 5.\*✗3.\*7.\*✗4.\*4.3.\* - 5.\*✓5.\*7.\* - 8.\*✓Installation
------------

[](#installation)

`Carbon.BackendDocument` is available via packagist.
Run the following command in your site package

```
composer require --no-update carbon/backenddocument
```

Then run `composer update` in your project root.

Usage of [`Carbon.BackendDocument:Document`](Resources/Private/Fusion/Document.fusion)
--------------------------------------------------------------------------------------

[](#usage-of-carbonbackenddocumentdocument)

PropertyDefault valueDescription`singleline``true`If you want to have a non-centric design, set this to `false``content``null`The content to show`style``null`Add additional style to the document`title``${q(node).property('title')}`The title of the document`namespace``carbon-backend`The namespace for the css class`javascripts``null`Add javscript to the document. Please provide also a `script` tag.`frontendRedirect.node``${q(documentNode).parent().get(0)}`The node where the user get redirected in the frontend.`frontendRedirect.statusCode``301`The status code for the redirection`cssVariables``null`Add your own CSS custom properties`documentStyle`Please take a look at the source codeModify/add/remove styles for the backend docmentUsage of [`Carbon.BackendDocument:Editable`](Resources/Private/Fusion/Editable/Editable.fusion)
-----------------------------------------------------------------------------------------------

[](#usage-of-carbonbackenddocumenteditable)

If you use this prototype on a regular document, the editor has the default styling from `Neos.Neos:Editable`. If you use it on [`Carbon.BackendDocument:Document`](Resources/Private/Fusion/Document.fusion), the editor gets the look of an inspector field.

If a value gets updated, a Javascript event with the name `Carbon.BackendDocument:Editable` gets fired. This event has the following details:

- `element`: the input/textarea/select field
- `property`: the name of the property
- `value`: The value of the property

PropertyDefault valueDescription`node``node`A node instance that should be used to read the property.`property``null`The name of the property which should be accessed`type``input`Set the type of editor. For possible values look at the next table`options``Neos.Fusion:DataStructure`Used for type `select` and `radio``optionGroups``Neos.Fusion:DataStructure`Used for type `select``label``null`Prepend a label`placeholder``null`Overwrite the placeholder from the nodetype definition. This can also be dynamic`class``null`Add your own CSS class if you want to override some stylings`style``null`Add your own style to the root element`includeCSS``true`Inlcude the styling`inspectorStyle``true`If set to `true` and used under [`Carbon.BackendDocument:Document`](Resources/Private/Fusion/Document.fusion), the styling will adapt to the inspector style`fallback``null`Fallback for the frontend if no value is given`editable``true`Switch if the value should be editableBe aware! If one element on a document has set `includeCSS` to true, this get's included for the whole document.

### Types

[](#types)

ValueDescription`input`No linebreaks, no tags, but autogrowing textfield`select`Select values, uses `options` and `optionGroups` DataStructure`radio`Select values, uses `options` DataStructure`block`Default editor, block style`inline`Default editor, inline style

###  Health Score

45

—

FairBetter than 93% of packages

Maintenance45

Moderate activity, may be stable

Popularity30

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity73

Established project with proven stability

 Bus Factor1

Top contributor holds 88.7% 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 ~78 days

Recently: every ~269 days

Total

31

Last Release

427d ago

Major Versions

4.0.0 → 5.0.02021-02-05

4.1.0 → 5.1.02021-02-05

4.2.0 → 5.2.02021-02-12

4.2.1 → 5.2.12021-02-16

4.2.2 → 5.2.22021-02-26

### Community

Maintainers

![](https://www.gravatar.com/avatar/5fec51ac160a110a31a72a54ac29e276a447d8306205a052d35491ac9cf0589b?d=identicon)[jonnitto](/maintainers/jonnitto)

---

Top Contributors

[![jonnitto](https://avatars.githubusercontent.com/u/4510166?v=4)](https://github.com/jonnitto "jonnitto (55 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (7 commits)")

---

Tags

backendcarbonneoscmshelpercarbonbackendflowNeosFUSION

### Embed Badge

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

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

###  Alternatives

[carbon/includeassets

Include your assets (css, js) in an easy way into Neos

14228.6k10](/packages/carbon-includeassets)[shel/neos-colorpicker

A plugin for Neos CMS which provides a colorpicker editor

1494.4k6](/packages/shel-neos-colorpicker)

PHPackages © 2026

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