{"id":20603325,"url":"https://github.com/bitbagcommerce/platform","last_synced_at":"2026-04-16T21:33:45.192Z","repository":{"id":233182449,"uuid":"727991559","full_name":"BitBagCommerce/platform","owner":"BitBagCommerce","description":null,"archived":false,"fork":false,"pushed_at":"2024-03-01T10:43:38.000Z","size":51,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":3,"default_branch":"1.12","last_synced_at":"2025-03-06T16:46:58.902Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BitBagCommerce.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-12-06T02:01:06.000Z","updated_at":"2023-12-06T02:01:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"105d1ffb-b993-4821-9d2f-3f7e37668d99","html_url":"https://github.com/BitBagCommerce/platform","commit_stats":null,"previous_names":["bitbagcommerce/platform"],"tags_count":0,"template":false,"template_full_name":"BitBagCommerce/Sylius-Standard","purl":"pkg:github/BitBagCommerce/platform","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BitBagCommerce%2Fplatform","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BitBagCommerce%2Fplatform/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BitBagCommerce%2Fplatform/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BitBagCommerce%2Fplatform/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BitBagCommerce","download_url":"https://codeload.github.com/BitBagCommerce/platform/tar.gz/refs/heads/1.12","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BitBagCommerce%2Fplatform/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31905644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-16T09:16:57.123Z","updated_at":"2026-04-16T21:33:45.179Z","avatar_url":"https://github.com/BitBagCommerce.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://sylius.com\" target=\"_blank\"\u003e\n        \u003cimg src=\"https://demo.sylius.com/assets/shop/img/logo.png\" /\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eSylius Standard Edition\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003eThis is Sylius Standard Edition repository for starting new projects.\u003c/p\u003e\n\n## About\n\nSylius is the first decoupled eCommerce platform based on [**Symfony**](http://symfony.com) and [**Doctrine**](http://doctrine-project.org). \nThe 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. \nEnjoy being an eCommerce Developer again!\n\nPowerful REST API allows for easy integrations and creating unique customer experience on any device.\n\nWe're using full-stack Behavior-Driven-Development, with [phpspec](http://phpspec.net) and [Behat](http://behat.org)\n\n## Documentation\n\nDocumentation is available at [docs.sylius.com](http://docs.sylius.com).\n\n## Installation\n\n### Traditional\n```bash\n$ wget http://getcomposer.org/composer.phar\n$ php composer.phar create-project sylius/sylius-standard project\n$ cd project\n$ yarn install\n$ yarn build\n$ php bin/console sylius:install\n$ symfony serve\n$ open http://localhost:8000/\n```\n\nFor more detailed instruction please visit [installation chapter in our docs](https://docs.sylius.com/en/1.10/book/installation/installation.html).\n\n### Docker\n\n#### Development\n\nMake sure you have installed [Docker](https://docs.docker.com/get-docker/) on your local machine.\nExecute `docker compose up -d` in your favorite terminal and wait some time until the services will be ready. You might want to see docker logs.\nThen enter `localhost` in your browser or execute `open localhost` in your terminal.\n\n#### Production\n\nThe simplest way to deploy your Sylius store via Docker is via `docker-compose.prod.yml` configuration file.\nTo do that you need to install [Docker](https://docs.docker.com/get-docker/) on your VPS and define `MYSQL_PASSWORD` environment.\nThen execute `docker compose -f docker-compose.prod.yml up -d` command in your terminal. The `MYSQL_PASSWORD` env will be automatically\napplied to the rest of the config.\n\n\u003e When using a Virtual Private Server (VPS) we recommend having at least 2GB of RAM memory\n\n**Quick deploy:**\n```bash\ncurl -fsSL https://get.docker.com -o get-docker.sh\nsudo sh get-docker.sh\n\nexport MYSQL_PASSWORD=SLyPJLaye7\n\ndocker compose -f docker-compose.prod.yml up -d\ndocker compose -f docker-compose.prod.yml exec php bin/console sylius:fixtures:load --no-interaction\n```\n\n## Troubleshooting\n\nIf something goes wrong, errors \u0026 exceptions are logged at the application level:\n\n```bash\n$ tail -f var/log/prod.log\n$ tail -f var/log/dev.log\n```\n\n## Contributing\n\nWould like to help us and build the most developer-friendly eCommerce platform? Start from reading our [Contribution Guide](https://docs.sylius.com/en/latest/contributing/)!\n\n## Stay Updated\n\nIf you want to keep up with the updates, [follow the official Sylius account on Twitter](http://twitter.com/Sylius) and [like us on Facebook](https://www.facebook.com/SyliusEcommerce/).\n\n## Bug Tracking\n\nIf you want to report a bug or suggest an idea, please use [GitHub issues](https://github.com/Sylius/Sylius/issues).\n\n## Community Support\n\nGet Sylius support on [Slack](https://sylius.com/slack), [Forum](https://forum.sylius.com/) or [Stack Overflow](https://stackoverflow.com/questions/tagged/sylius).\n\n## MIT License\n\nSylius is completely free and released under the [MIT License](https://github.com/Sylius/Sylius/blob/master/LICENSE).\n\n## Authors\n\nSylius was originally created by [Paweł Jędrzejewski](http://pjedrzejewski.com).\nSee the list of [contributors from our awesome community](https://github.com/Sylius/Sylius/contributors).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitbagcommerce%2Fplatform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbitbagcommerce%2Fplatform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitbagcommerce%2Fplatform/lists"}