PHPackages                             steffenbrem/sylius - 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. [Framework](/categories/framework)
4. /
5. steffenbrem/sylius

ActiveProject[Framework](/categories/framework)

steffenbrem/sylius
==================

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

v0.19.0(9y ago)051MITPHPPHP ^5.6|^7.0

Since Jul 31Pushed 8y ago2 watchersCompare

[ Source](https://github.com/steffenbrem/Sylius)[ Packagist](https://packagist.org/packages/steffenbrem/sylius)[ Docs](http://sylius.org)[ RSS](/packages/steffenbrem-sylius/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (76)Versions (55)Used By (0)

[![Sylius](https://camo.githubusercontent.com/d824a18317d8495bc1f221cd762c96c61eec0975cf108fcee8c05ce09d51664d/68747470733a2f2f646c2e64726f70626f7875736572636f6e74656e742e636f6d2f752f34363537393832302f73796c6975732d6c6f676f2e6a7067)](https://camo.githubusercontent.com/d824a18317d8495bc1f221cd762c96c61eec0975cf108fcee8c05ce09d51664d/68747470733a2f2f646c2e64726f70626f7875736572636f6e74656e742e636f6d2f752f34363537393832302f73796c6975732d6c6f676f2e6a7067)

[![Gitter chat](https://camo.githubusercontent.com/1e85be451bca5a60678bd0dd682f9b4ac5b7c6a02befe146f95b1644dcf71ae1/68747470733a2f2f6261646765732e6769747465722e696d2f53796c6975732f53796c6975732e706e67)](https://gitter.im/Sylius/Sylius)[![License](https://camo.githubusercontent.com/ce88a72a4b0fea78b8998baefc6cb1d2e91551dbeebd621e8aebfbbc3eb1b7de/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f53796c6975732f53796c6975732e737667)](https://packagist.org/packages/sylius/sylius)[![Version](https://camo.githubusercontent.com/a155f64b5b309f5406a275424413e725e3d94a5bfed56decacb42f7ee9be18dd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f53796c6975732f53796c6975732e737667)](https://packagist.org/packages/sylius/sylius)[![Build status on Linux](https://camo.githubusercontent.com/2dd5a01781d3083d0278735713b861d23c0a79c1e803d7805860a67af5e34d3d/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f53796c6975732f53796c6975732f6d61737465722e737667)](http://travis-ci.org/Sylius/Sylius)[![Scrutinizer Quality Score](https://camo.githubusercontent.com/797547561e96a11366288c583f8de1f8a6398c94f5b06d553d0dc989da3c1617/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f53796c6975732f53796c6975732e737667)](https://scrutinizer-ci.com/g/Sylius/Sylius/)[![HHVM Status](https://camo.githubusercontent.com/6807ed009004d6c2c043cd44354525b3f139b768e58e6cace8d7a79e6062865e/68747470733a2f2f696d672e736869656c64732e696f2f6868766d2f53796c6975732f53796c6975732e737667)](http://hhvm.h4cc.de/package/sylius/sylius)[![Dependency Status](https://camo.githubusercontent.com/45f610969444e753d76b2797d8937ab59f954aad05e6eb36da4097727e045401/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f7068702f73796c6975733a73796c6975732f62616467652e737667)](https://www.versioneye.com/php/sylius:sylius)

Sylius is an open source e-commerce solution for **PHP**, based on the [**Symfony2**](http://symfony.com) framework.

Ultimate goal of the project is to create a webshop engine, which is user-friendly, *loved* by developers and has a helpful community.

Sylius is constructed from fully decoupled components (bundles in Symfony2 glossary), which means that every feature (products catalog, shipping engine, promotions system...) can be used in any other application.

We're using full-stack BDD methodology, with [phpspec](http://phpspec.net) and [Behat](http://behat.org).

Windows support is a WIP!

[![Build status on Windows](https://camo.githubusercontent.com/4863ca63dac6e226fa82a41944d5f1180f9a676b2894131b5ae88f4340f639bc/68747470733a2f2f696d672e736869656c64732e696f2f6170707665796f722f63692f706a6564727a656a6577736b692f73796c6975732e737667)](https://ci.appveyor.com/project/pjedrzejewski/sylius/branch/master)

Documentation
-------------

[](#documentation)

Documentation is available at [docs.sylius.org](http://docs.sylius.org).

Quick Installation
------------------

[](#quick-installation)

```
$ wget http://getcomposer.org/composer.phar
$ php composer.phar create-project sylius/sylius
$ cd sylius
$ php app/console sylius:install
$ php app/console server:run
```

The install script will give you the option to run fixtures that make testing and development phases much easier.

If you want to try out new Sylius UI, please run the following commands:

```
$ npm install
$ npm run gulp
```

[Behat](http://behat.org) scenarios
-----------------------------------

[](#behat-scenarios)

By default Behat uses `http://localhost:8080/` as your application base url. If your one is different, you need to create `behat.yml` files that will overwrite it with your custom url:

```
imports: ["behat.yml.dist"]

default:
    extensions:
        Behat\MinkExtension:
            base_url: http://my.custom.url
```

Then run selenium-server-standalone:

```
$ bin/selenium-server-standalone
```

Then setup your test database:

```
$ php app/console doctrine:database:create --env=test
$ php app/console doctrine:schema:create --env=test
```

You can run Behat using the following commands:

```
$ bin/behat
```

Troubleshooting
---------------

[](#troubleshooting)

If something goes wrong, errors &amp; exceptions are logged at the application level:

```
$ tail -f app/logs/prod.log
$ tail -f app/logs/dev.log
```

If you are using the supplied Vagrant development environment, please see the related [Troubleshooting guide](vagrant/README.md#Troubleshooting) for more information.

Contributing
------------

[](#contributing)

[This page](http://docs.sylius.org/en/latest/contributing/index.html) contains all the information about contributing to Sylius.

Sylius on Twitter
-----------------

[](#sylius-on-twitter)

If you want to keep up with the updates, [follow the official Sylius account on Twitter](http://twitter.com/Sylius).

Bug tracking
------------

[](#bug-tracking)

Sylius uses [GitHub issues](https://github.com/Sylius/Sylius/issues). If you have found bug, please create an issue.

MIT License
-----------

[](#mit-license)

License can be found [here](https://github.com/Sylius/Sylius/blob/master/LICENSE).

Authors
-------

[](#authors)

Sylius was originally created by [Paweł Jędrzejewski](http://pjedrzejewski.com). See the list of [contributors](https://github.com/Sylius/Sylius/contributors).

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community21

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor5

5 contributors hold 50%+ of commits

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 ~71 days

Total

20

Last Release

3315d ago

Major Versions

v0.19.0 → v1.0.0-alpha.12016-10-20

PHP version history (4 changes)v0.1.0PHP &gt;=5.3.3

v0.14.0PHP &gt;=5.3.9

v0.16.0PHP ^5.5.9|^7.0

v0.19.0PHP ^5.6|^7.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/1cee8b0807644941f18adb7154d6c8e86df45d65fa23ee4d4d97eacf63978f67?d=identicon)[steffenbrem](/maintainers/steffenbrem)

---

Top Contributors

[![pamil](https://avatars.githubusercontent.com/u/1897953?v=4)](https://github.com/pamil "pamil (808 commits)")[![michalmarcinkowski](https://avatars.githubusercontent.com/u/7572437?v=4)](https://github.com/michalmarcinkowski "michalmarcinkowski (621 commits)")[![Zales0123](https://avatars.githubusercontent.com/u/6212718?v=4)](https://github.com/Zales0123 "Zales0123 (568 commits)")[![stloyd](https://avatars.githubusercontent.com/u/67402?v=4)](https://github.com/stloyd "stloyd (445 commits)")[![lchrusciel](https://avatars.githubusercontent.com/u/6213903?v=4)](https://github.com/lchrusciel "lchrusciel (365 commits)")[![umpirsky](https://avatars.githubusercontent.com/u/208957?v=4)](https://github.com/umpirsky "umpirsky (338 commits)")[![winzou](https://avatars.githubusercontent.com/u/702928?v=4)](https://github.com/winzou "winzou (292 commits)")[![arnolanglade](https://avatars.githubusercontent.com/u/3585922?v=4)](https://github.com/arnolanglade "arnolanglade (272 commits)")[![Arminek](https://avatars.githubusercontent.com/u/6368946?v=4)](https://github.com/Arminek "Arminek (271 commits)")[![GSadee](https://avatars.githubusercontent.com/u/6140884?v=4)](https://github.com/GSadee "GSadee (219 commits)")[![pjedrzejewski](https://avatars.githubusercontent.com/u/614970?v=4)](https://github.com/pjedrzejewski "pjedrzejewski (218 commits)")[![jjanvier](https://avatars.githubusercontent.com/u/3691804?v=4)](https://github.com/jjanvier "jjanvier (142 commits)")[![NoResponseMate](https://avatars.githubusercontent.com/u/9448101?v=4)](https://github.com/NoResponseMate "NoResponseMate (132 commits)")[![kayue](https://avatars.githubusercontent.com/u/193112?v=4)](https://github.com/kayue "kayue (130 commits)")[![piotrantosik](https://avatars.githubusercontent.com/u/154553?v=4)](https://github.com/piotrantosik "piotrantosik (81 commits)")[![Richtermeister](https://avatars.githubusercontent.com/u/624921?v=4)](https://github.com/Richtermeister "Richtermeister (76 commits)")[![koemeet](https://avatars.githubusercontent.com/u/1569156?v=4)](https://github.com/koemeet "koemeet (68 commits)")[![amenophis](https://avatars.githubusercontent.com/u/2158235?v=4)](https://github.com/amenophis "amenophis (56 commits)")[![aramalipoor](https://avatars.githubusercontent.com/u/1164589?v=4)](https://github.com/aramalipoor "aramalipoor (56 commits)")[![gperdomor](https://avatars.githubusercontent.com/u/371939?v=4)](https://github.com/gperdomor "gperdomor (51 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[sylius/sylius

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

8.4k5.6M647](/packages/sylius-sylius)[sulu/sulu

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

1.3k1.3M152](/packages/sulu-sulu)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)[contao/core-bundle

Contao Open Source CMS

1231.6M2.3k](/packages/contao-core-bundle)

PHPackages © 2026

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