Sylius app skeleton https://sylius.com
  • PHP 81.4%
  • JavaScript 12.2%
  • Makefile 5.7%
  • Twig 0.7%
Find a file
legendik 58b24166ae
Some checks failed
Build / Get matrix (push) Failing after 1m14s
Build / Static checks (push) Failing after 0s
Build / Tests (push) Failing after 0s
Build / Javascript Tests (push) Failing after 0s
Build / Get matrix-1 (push) Has been skipped
Build / Get matrix-2 (push) Has been skipped
chore: bump
2026-05-04 20:27:13 +00:00
.github chore(ci): fix automerge action 2026-02-16 14:34:48 +01:00
.platform Update Upsun Fixed config 2025-10-13 17:40:19 +02:00
.upsun some mounts require to be shared between instances 2025-11-17 19:25:04 +01:00
assets [Assets] Add .gitignore files for admin and shop image directories 2025-06-16 08:50:42 +02:00
bin Let's use symfony/runtime 2022-10-30 22:52:52 +01:00
config Disable OrderByIdentifierSqlWalker to prevent filesort on large tables 2026-04-07 13:28:08 +02:00
etc/build Switch to Symfony 4 directory structure + add Flex support 2018-09-19 00:53:10 +02:00
features Switch to Symfony 4 directory structure + add Flex support 2018-09-19 00:53:10 +02:00
migrations [Maintenance] Bump doctrine recipes 2024-09-25 22:23:07 +02:00
public Let's use symfony/runtime 2022-10-30 22:52:52 +01:00
src [ECS] Apply coding standards 2025-06-09 07:40:42 +02:00
templates Split CI builds to run faster 2024-12-16 11:51:21 +01:00
tests Remove redundant method_exists check in tests/bootstrap.php 2025-12-19 16:48:56 +01:00
themes Rename .gitingore to .gitignore in the theme directory 2018-10-19 00:09:02 +02:00
translations Switch to Symfony 4 directory structure + add Flex support 2018-09-19 00:53:10 +02:00
var Switch to Symfony 4 directory structure + add Flex support 2018-09-19 00:53:10 +02:00
.babelrc Update JS dependencies 2022-09-21 16:11:32 +02:00
.dockerignore [docker]Integrate production config docker with Webpack 2022-10-03 22:50:50 +02:00
.editorconfig Update symfony/framework-bundle recipe 2025-12-19 15:31:49 +01:00
.env Update symfony/routing recipe 2025-12-19 15:35:16 +01:00
.env.dev Update symfony/framework-bundle recipe 2025-12-19 15:31:49 +01:00
.env.prod [maintenance]Simplify docker-compose production environment config 2022-05-18 11:22:35 +02:00
.env.test Update symfony/panther recipe 2025-12-19 15:34:09 +01:00
.env.test_cached [PaymentRequest] Add encryption test key 2024-10-29 10:38:42 +01:00
.gitignore Update phpunit/phpunit recipe 2025-12-19 15:29:19 +01:00
.node-version Bump node to 20 version 2024-05-09 14:12:52 +02:00
.platform.app.yaml Fix issue with channel mismatch on platform.sh clean install 2025-10-14 21:37:12 +02:00
behat.yml.dist Try to fix build with PHP 8.5 and 8.4 2026-02-04 16:00:12 +01:00
compose.override.dist.yml Use APP_ENV instead of ENV in Docker Compose config 2025-12-08 11:02:55 +01:00
compose.yml [Docker] Wait for MySQL to start 2025-12-19 14:44:21 +01:00
composer.json [Maintenance] Set branch alias to dev-2.2 2025-12-19 17:12:49 +01:00
composer.lock Bump friends-of-behat/variadic-extension from 1.6.0 to 1.7.0 (#1251) 2026-04-30 12:51:49 +02:00
CONFLICTS.md [Conflict] Add conflict with behat/mink-selenium2-driver:>=1.7.0 2024-02-07 18:06:02 +01:00
ecs.php [Maintenance] Add ECS path 2023-04-07 15:39:27 +02:00
LICENSE Update LICENSE year 2024-10-30 23:53:07 +01:00
LICENSE_OF_TRADEMARK_AND_LOGO Create LICENSE_OF_TRADEMARK_AND_LOGO 2024-10-30 23:51:17 +01:00
Makefile [DX] Fix file ownership on WSL2 2025-10-21 12:26:33 +02:00
package.json [Webpack] Configure asset copying for shop and admin images 2025-06-16 08:50:26 +02:00
phpstan.dist.neon [Maintenance] Bump PHPStan to max level and resolve issues 2024-09-26 00:15:58 +02:00
phpunit.xml.dist Update phpunit/phpunit recipe 2025-12-19 15:29:19 +01:00
README.md chore: bump 2026-05-04 20:27:13 +00:00
rector.php Update Rector configuration to use new API 2025-11-25 22:48:18 +01:00
symfony.lock Update symfony/translation recipe 2025-12-19 16:49:24 +01:00
webpack.config.js Update symfony/webpack-encore-bundle recipe 2025-12-19 16:48:56 +01:00
yarn.lock Bump picomatch from 2.3.1 to 2.3.2 2026-03-25 21:55:19 +00:00

Sylius Logo.

Sylius Standard Edition

This is Sylius Standard Edition repository for starting new projects.

About

Sylius is the first decoupled eCommerce framework based on Symfony and Doctrine. The highest quality of code, strong testing culture, built-in Agile (BDD) workflow and exceptional flexibility make it the best solution for application tailored to your business requirements. Enjoy being an eCommerce Developer again!

Powerful REST API allows for easy integrations and creating unique customer experience on any device.

We're using full-stack Behavior-Driven-Development, with Behat

Documentation

Documentation is available at docs.sylius.com.

Installation

Traditional

$ wget http://getcomposer.org/composer.phar
$ php composer.phar create-project sylius/sylius-standard project
$ cd project
$ yarn install
$ yarn build
$ php bin/console sylius:install
$ symfony serve
$ open http://localhost:8000/

For more detailed instruction about traditional way of running Sylius please visit installation chapter in our docs.

Docker

You can run Sylius and all associated infrastructure dependencies (PHP, Nginx, MySQL, Node) on your machine using only Docker containers. Make sure you have installed Docker on your local machine.

Option 1: Get the latest release

LATEST=$(curl -s https://api.github.com/repos/Sylius/Sylius-Standard/releases/latest | grep '"tag_name"' | cut -d'"' -f4)
curl -L -o sylius-latest.zip https://github.com/Sylius/Sylius-Standard/archive/refs/tags/$LATEST.zip
unzip sylius-latest.zip
cd Sylius-Standard-*

Option 2: List available versions

curl -s https://api.github.com/repos/Sylius/Sylius-Standard/releases | grep '"tag_name"' | cut -d'"' -f4 | head -10

Option 3: Get a specific version

VERSION="v2.x.x"  # Replace with desired version
curl -L -o sylius-$VERSION.zip https://github.com/Sylius/Sylius-Standard/archive/refs/tags/$VERSION.zip
unzip sylius-$VERSION.zip
cd Sylius-Standard-*

Initialize the project (required for all options):

make init

For more detailed instruction about Docker way of running Sylius please visit Docker installation chapter in our docs.

Troubleshooting

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

$ tail -f var/log/prod.log
$ tail -f var/log/dev.log

Contributing

Would like to help us and build the most developer-friendly eCommerce framework? Start from reading our Contribution Guide!

Stay Updated

If you want to keep up with the updates, follow the official Sylius account on Twitter and like us on Facebook.

Bug Tracking

If you want to report a bug or suggest an idea, please use GitHub issues.

Community Support

Get Sylius support on Slack, Forum or Stack Overflow.

MIT License

Sylius is completely free and released under the MIT License.

Authors

Sylius was originally created by Paweł Jędrzejewski. See the list of contributors from our awesome community.

BUMP SECTION

  • Tadaaaa