PHPackages                             xrow/syliusfork - 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. xrow/syliusfork

ActiveProject[Framework](/categories/framework)

xrow/syliusfork
===============

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

v0.14.8(7y ago)015MITPHPPHP &gt;=5.5.9

Since Feb 24Pushed 7y ago1 watchersCompare

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

READMEChangelog (5)Dependencies (64)Versions (8)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...](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).

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:v0.15.0
$ cd sylius
$ php app/console sylius:install
```

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

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

[](#behat-scenarios)

You need to copy Behat default configuration file and enter your specific `base_url`option there:

```
$ cp behat.yml.dist behat.yml
$ vi behat.yml
```

Then download [Selenium Server](http://seleniumhq.org/download/), and run it:

```
$ java -jar selenium-server-standalone-2.41.0.jar
```

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 # In order to run tests which don't need JS support
$ bin/behat -p javascript # In order to run tests which need JS support
```

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

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

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

Recently: every ~0 days

Total

7

Last Release

2590d ago

### Community

Maintainers

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

---

Top Contributors

[![stloyd](https://avatars.githubusercontent.com/u/67402?v=4)](https://github.com/stloyd "stloyd (434 commits)")[![umpirsky](https://avatars.githubusercontent.com/u/208957?v=4)](https://github.com/umpirsky "umpirsky (316 commits)")[![winzou](https://avatars.githubusercontent.com/u/702928?v=4)](https://github.com/winzou "winzou (289 commits)")[![arnolanglade](https://avatars.githubusercontent.com/u/3585922?v=4)](https://github.com/arnolanglade "arnolanglade (190 commits)")[![michalmarcinkowski](https://avatars.githubusercontent.com/u/7572437?v=4)](https://github.com/michalmarcinkowski "michalmarcinkowski (162 commits)")[![kayue](https://avatars.githubusercontent.com/u/193112?v=4)](https://github.com/kayue "kayue (130 commits)")[![jjanvier](https://avatars.githubusercontent.com/u/3691804?v=4)](https://github.com/jjanvier "jjanvier (124 commits)")[![Zales0123](https://avatars.githubusercontent.com/u/6212718?v=4)](https://github.com/Zales0123 "Zales0123 (100 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 (75 commits)")[![pamil](https://avatars.githubusercontent.com/u/1897953?v=4)](https://github.com/pamil "pamil (61 commits)")[![lchrusciel](https://avatars.githubusercontent.com/u/6213903?v=4)](https://github.com/lchrusciel "lchrusciel (56 commits)")[![amenophis](https://avatars.githubusercontent.com/u/2158235?v=4)](https://github.com/amenophis "amenophis (54 commits)")[![makasim](https://avatars.githubusercontent.com/u/143206?v=4)](https://github.com/makasim "makasim (46 commits)")[![aramalipoor](https://avatars.githubusercontent.com/u/1164589?v=4)](https://github.com/aramalipoor "aramalipoor (39 commits)")[![psyray](https://avatars.githubusercontent.com/u/1230954?v=4)](https://github.com/psyray "psyray (35 commits)")[![agounaris](https://avatars.githubusercontent.com/u/1845809?v=4)](https://github.com/agounaris "agounaris (29 commits)")[![gperdomor](https://avatars.githubusercontent.com/u/371939?v=4)](https://github.com/gperdomor "gperdomor (28 commits)")[![loevstroem](https://avatars.githubusercontent.com/u/1077111?v=4)](https://github.com/loevstroem "loevstroem (26 commits)")[![elliot](https://avatars.githubusercontent.com/u/9938?v=4)](https://github.com/elliot "elliot (26 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[sylius/sylius

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

8.4k5.6M651](/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.4k](/packages/contao-core-bundle)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[open-dxp/opendxp

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

7310.3k29](/packages/open-dxp-opendxp)

PHPackages © 2026

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