PHPackages                             elfet/silicone-skeleton - 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. elfet/silicone-skeleton

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

elfet/silicone-skeleton
=======================

v1.0.1(12y ago)10153815MITPHPPHP &gt;=5.3.0

Since Nov 7Pushed 10y ago1 watchersCompare

[ Source](https://github.com/elfet/silicone-skeleton)[ Packagist](https://packagist.org/packages/elfet/silicone-skeleton)[ RSS](/packages/elfet-silicone-skeleton/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (16)Versions (3)Used By (0)

Silicone Skeleton
=================

[](#silicone-skeleton)

Silicone Skeleton is Silex Framework Edition Skeleton.

Every part is configurable. You can choose anything you want.

This Silex modification contains the following:

- HttpCache
- Class Controllers
- Doctrine Common
- Doctrine ORM
- Monolog
- Session
- Twig
- Translation
- Validator
    - Unique validator for entities
- Forms
- Security
- User Registration and Authorization.
- Annotation Routes
- WebProfiler (with Doctrine queries logger)
- Console

Structure
---------

[](#structure)

Structure of Silicone is very similar to Symfony's.

```
app/
    config/  -- Configuration
    lang/    -- Language Yml, Xliff files
    open/    -- Writable directory for caches, logs, ext.
    src/     -- Application sources
    vendor/  -- Vendors
    view/    -- Twig view files
    console  -- Console Tool
web/
    index.php

```

Controller
----------

[](#controller)

You can use Silex controllers `$app->get(...)` with class controllers.

```
class Blog extends Controller
{
    /**
     * @Route("/blog/{post}")
     */
    public function post($post)
    {
        return $this->render('post.twig');
    }
}
```

Doctrine ORM
------------

[](#doctrine-orm)

You can use all Doctrine ORM functionality, not just DBAL. Create file `app/src/Entity/Post.php`:

```
namespace Entity;

use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;

/**
 * @ORM\Entity
 */
class Post
{
    /**
     * @ORM\Id
     * @ORM\Column(type="integer")
     * @ORM\GeneratedValue
     */
    protected $id;

    /**
     * @ORM\Column
     * @Assert\NotBlank()
     * @Assert\Length(min = "3", max = "1000")
     */
    protected $text;
}
```

After this just run:

```
app/console schema:update

```

Install
-------

[](#install)

Use Composer to create a new project:

```
composer create-project elfet/silicone-skeleton your/app/path

```

Open directory used for writing caches, logs, ext. So you must give write permissions for www-data user. Example:

```
sudo chmod +a "www-data allow delete,write,append,file_inherit,directory_inherit" app/open/
sudo chmod +a "[your user name] allow delete,write,append,file_inherit,directory_inherit" app/open/

```

Add permissions to execute console command. Example:

```
chmod +x app/console

```

Database
--------

[](#database)

After configuring console run the following commands to create sample database:

```
app/console database:create
app/console schema:create

```

TODO
----

[](#todo)

- Documentation
- Tests
- SwiftMailer

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity29

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.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 ~19 days

Total

2

Last Release

4598d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1631737?v=4)[medv](/maintainers/medv)[@medv](https://github.com/medv)

---

Top Contributors

[![chapay](https://avatars.githubusercontent.com/u/230958?v=4)](https://github.com/chapay "chapay (2 commits)")[![vetalt](https://avatars.githubusercontent.com/u/6026208?v=4)](https://github.com/vetalt "vetalt (1 commits)")

### Embed Badge

![Health badge](/badges/elfet-silicone-skeleton/health.svg)

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

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.5M378](/packages/easycorp-easyadmin-bundle)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1615.6k12](/packages/2lenet-crudit-bundle)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M196](/packages/sulu-sulu)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9417.2k58](/packages/open-dxp-opendxp)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k5.8M717](/packages/sylius-sylius)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.4M528](/packages/shopware-core)

PHPackages © 2026

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