PHPackages                             rocketage/sculpin-multilingual-bundle - 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. [Localization &amp; i18n](/categories/localization)
4. /
5. rocketage/sculpin-multilingual-bundle

ActiveLibrary[Localization &amp; i18n](/categories/localization)

rocketage/sculpin-multilingual-bundle
=====================================

Sculpin Multilingual Bundle

1.0.0(9y ago)546MITPHPPHP &gt;=5.3.2

Since Jun 12Pushed 9y ago2 watchersCompare

[ Source](https://github.com/rocketage/sculpin_multilingual)[ Packagist](https://packagist.org/packages/rocketage/sculpin-multilingual-bundle)[ Docs](https://sculpin.io)[ RSS](/packages/rocketage-sculpin-multilingual-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

Sculpin Multilingual Bundle
===========================

[](#sculpin-multilingual-bundle)

Description
-----------

[](#description)

This extension was created to handle a Sculpin multi-lingual site where each language occupies a separate subdomain.

Out of the box Sculpin can already provide this with a directory within the source directory for each language subdomain.

For example a spanish/english site running on es.example.com and en.example.com could use:

```
> tree source
source
├── en
│   ├── about.html
│   └── contact.html
└── es
    ├── contacto.html
    └── sobre.html

> sculpin generate

> tree output_dev

output_dev
├── en
│   ├── about.html
│   └── contact.html
└── es
    ├── contacto.html
    └── sobre.html

```

This is fine to render the files for each language from a unique source for each subdomain, but if any files need to be shared across all subdomains (css/js/images) then either copy/paste or symlinks are required which can get messy across many subdomains.

This extension allows you to define a shared directory in the Sculpin source directory for shared assets and define which target directories the shared resource should populate.

The example again using the extension setup to share images, js and css:

```
> tree source
source
├── en
│   ├── about.html
│   └── contact.html
├── es
│   ├── contacto.html
│   └── sobre.html
└── shared
    ├── css
    │   └── site.css
    ├── img
    │   └── image.jpg
    └── js
        └── site.js

> sculpin generate

> tree output_dev
output_dev
├── en
│   ├── about.html
│   ├── contact.html
│   ├── css
│   │   └── site.css
│   ├── img
│   │   └── image.jpg
│   └── js
│       └── site.js
└── es
    ├── contacto.html
    ├── css
    │   └── site.css
    ├── img
    │   └── image.jpg
    ├── js
    │   └── site.js
    └── sobre.html

```

Installation
------------

[](#installation)

Edit your `sculpin.json` file:

```
{
    // ...
    "require": {
        // ...
        "rocketage/sculpin-multilingual-bundle": "@dev"
    }
}
```

and install by running `sculpin update`.

Now register the bundle in `app/SculpinKernel.php`:

```
class SculpinKernel extends \Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel
{
    protected function getAdditionalSculpinBundles()
    {
        return array(
            'Rocketage\Sculpin\Bundle\MultilingualBundle\SculpinMultilingualBundle'
        );
    }
}
```

Configuration
-------------

[](#configuration)

Define the shared directory name and the target direcotries in the Sculpin app config `app/config/sculpin_kernel.yml`:

```
sculpin_multilingual:
  shared_directory: 'shared'
  target_directories:
    - en
    - es

```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

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

3617d ago

### Community

Maintainers

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

---

Tags

multilingualstaticblogbloggingsite

### Embed Badge

![Health badge](/badges/rocketage-sculpin-multilingual-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/rocketage-sculpin-multilingual-bundle/health.svg)](https://phpackages.com/packages/rocketage-sculpin-multilingual-bundle)
```

###  Alternatives

[themsaid/laravel-langman

Manage language files with ease.

871307.5k11](/packages/themsaid-laravel-langman)[icanboogie/inflector

Multilingual inflector that transforms words from singular to plural, underscore to camel case, and more.

2182.4M68](/packages/icanboogie-inflector)[typicms/base

A modular multilingual CMS built with Laravel, enabling developers to manage structured content like pages, news, events, and more.

1.6k20.3k](/packages/typicms-base)[asgardcms/platform

The AsgardCms application.

78860.8k](/packages/asgardcms-platform)[tightenco/jigsaw-blog-template

Blog starter template for Jigsaw static site generator by Tighten

9464.0k](/packages/tightenco-jigsaw-blog-template)[tractorcow/silverstripe-fluent

Simple localisation for Silverstripe

92421.6k26](/packages/tractorcow-silverstripe-fluent)

PHPackages © 2026

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