{"id":44697915,"url":"https://github.com/syntro-opensource/silverstripe-ssto","last_synced_at":"2026-02-15T08:35:26.737Z","repository":{"id":38025812,"uuid":"291699431","full_name":"syntro-opensource/silverstripe-ssto","owner":"syntro-opensource","description":"The SilverStripe Framework Installer for Syntro Projects","archived":false,"fork":false,"pushed_at":"2025-10-20T12:47:26.000Z","size":5844,"stargazers_count":3,"open_issues_count":5,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-20T13:10:02.219Z","etag":null,"topics":["recipe","silverstripe","silverstripe-ssto","themed"],"latest_commit_sha":null,"homepage":"","language":"Scheme","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/syntro-opensource.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"code-of-conduct.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-08-31T11:41:58.000Z","updated_at":"2025-10-20T12:47:23.000Z","dependencies_parsed_at":"2025-09-19T09:26:32.378Z","dependency_job_id":"3b6b5ebd-db02-4ff1-b106-2788a948d5c7","html_url":"https://github.com/syntro-opensource/silverstripe-ssto","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/syntro-opensource/silverstripe-ssto","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntro-opensource%2Fsilverstripe-ssto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntro-opensource%2Fsilverstripe-ssto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntro-opensource%2Fsilverstripe-ssto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntro-opensource%2Fsilverstripe-ssto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/syntro-opensource","download_url":"https://codeload.github.com/syntro-opensource/silverstripe-ssto/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntro-opensource%2Fsilverstripe-ssto/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29473718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T06:58:05.414Z","status":"ssl_error","status_checked_at":"2026-02-15T06:58:05.085Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["recipe","silverstripe","silverstripe-ssto","themed"],"created_at":"2026-02-15T08:35:26.079Z","updated_at":"2026-02-15T08:35:26.730Z","avatar_url":"https://github.com/syntro-opensource.png","language":"Scheme","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Syntro Silverstripe SSTO 🌍 🚀 ✨\n\n[![🎭 Tests](https://github.com/syntro-opensource/silverstripe-ssto/actions/workflows/tests.yml/badge.svg)](https://github.com/syntro-opensource/silverstripe-ssto/actions/workflows/tests.yml)\n![Dependabot](https://img.shields.io/badge/dependabot-active-brightgreen?logo=dependabot)\n[![composer](https://img.shields.io/packagist/dt/syntro/ssto?color=success\u0026logo=composer)](https://packagist.org/packages/syntro/ssto)\n[![Packagist Version](https://img.shields.io/packagist/v/syntro/ssto?label=stable\u0026logo=composer)](https://packagist.org/packages/syntro/ssto)\n\nSyntro Silverstripe SSTO (from the abbreviation for **S**ingle-**s**tage-**t**o-**o**rbit)\nprovides a prepackaged recipe for starting a new Silverstripe project from scratch.\nFeatured are:\n* bootstrap based styling\n* webpack based build tooling\n* elemental editor with some standard blocks to get you started\n\n## 📯 Getting started\n\nTo get started, simply run: *(see [ssdev](https://github.com/syntro-opensource/ssdev) for more info on our devenv.)*\n```\nnpx ssdev init -r syntro/ssto:^2 projectname\n```\n\u003e After installation, consult the [checklist](docs/checklist.md) to make the newly\n\u003e created project your own. Then, you should replace this part of the readme with\n\u003e a guide on how to clone the new project\n\n\n## 🖥 Serving Silverstripe\nTo start the server via docker, run\n```\nnpx ssdev serve\n```\nThis will start a host and database container running your project. To stop\nit, run\n```\nnpx ssdev down\n```\n\n## 🎨 Theming\n-\u003e Refer to the [📖 theming docs](docs/theming.md)\n\n\n## 🎭 Testing\nBy default, this recipe supplies PHPUnit, PHPCS and PHPStan for testing. you can\nrun the tests by executing:\n```\nnpx ssdev run -- vendor/bin/phpunit\n```\n```\nnpx ssdev run -- vendor/bin/phpstan analyse --memory-limit=1G -l4 -c phpstan.neon app/src/\n```\n```\nnpx ssdev run -- vendor/bin/phpcs app/\nnpx ssdev run -- vendor/bin/phpcbf app/\n```\n\n## 🆕 Commiting new Things\n\nWe recommend using the [Gitflow Workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow)\n(for big teams) or the [Git Feature Branch Workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/feature-branch-workflow)\n(for small teams). When creating new PRs with features, use the \"squash and merge\"\noption and prefix the resulting commit with (it helps adding the prefix to the PR title):\n\n* `add:` when something new is added\n* `fix:` when something is fixed\n* `change:` when something is changed\n* `deprecate:` when something will be removed\n* `remove:` when something was removed\n* *(`Bump:` for dependency updates)*\n\nFollowing this makes releasing easier and allows using an automatically generated\nchangelog.\n\n## 🚀 Releasing\nAfter you have a deployable application / website, you can deploy it to a server.\nWe recommend you follow these steps (which will incidentally also trigger the\nproduction deployment job):\n\n1. Make sure all tests pass\n2. Run `npm run release --next=\"x.x.x\"`\n3. Commit the changes as `release/x.x.x` and push them\n4. Create a new release `x.x.x` on Github\n\n\n## ➕ More Infos\nCheck out the following for more informations:\n* [Changelog](CHANGELOG.md)\n* [Contributing guide](CONTRIBUTING.md)\n* [License](LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyntro-opensource%2Fsilverstripe-ssto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsyntro-opensource%2Fsilverstripe-ssto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyntro-opensource%2Fsilverstripe-ssto/lists"}