{"id":28521389,"url":"https://github.com/backstagephp/core","last_synced_at":"2025-07-03T17:31:48.430Z","repository":{"id":294838915,"uuid":"870727000","full_name":"backstagephp/core","owner":"backstagephp","description":"CMS made with Laravel \u0026 Filament. Will be replaced by `cms`. See documentation at: https://docs.backstagephp.com","archived":false,"fork":false,"pushed_at":"2025-06-27T11:27:37.000Z","size":6694,"stargazers_count":4,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-27T12:29:29.874Z","etag":null,"topics":["backstage","cms","filament","laravel"],"latest_commit_sha":null,"homepage":"https://backstagephp.com/","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/backstagephp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"vormkracht10"}},"created_at":"2024-10-10T14:58:30.000Z","updated_at":"2025-06-27T05:35:20.000Z","dependencies_parsed_at":"2025-05-22T10:31:57.846Z","dependency_job_id":"2c86f9fe-f7f5-45b3-a38b-6a3250cdd1e6","html_url":"https://github.com/backstagephp/core","commit_stats":null,"previous_names":["backstagephp/core"],"tags_count":54,"template":false,"template_full_name":null,"purl":"pkg:github/backstagephp/core","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backstagephp%2Fcore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backstagephp%2Fcore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backstagephp%2Fcore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backstagephp%2Fcore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/backstagephp","download_url":"https://codeload.github.com/backstagephp/core/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backstagephp%2Fcore/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263369598,"owners_count":23456329,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["backstage","cms","filament","laravel"],"created_at":"2025-06-09T07:36:07.284Z","updated_at":"2025-07-03T17:31:48.419Z","avatar_url":"https://github.com/backstagephp.png","language":"PHP","funding_links":["https://github.com/sponsors/vormkracht10"],"categories":[],"sub_categories":[],"readme":"# Backstage CMS\n\n![Backstage](/docs/backstage-logo-groen-light.jpg)\n\n## CMS done the Laravel way\n*Enter backstage, to be in front*\n\n![Test](https://github.com/backstagephp/core/actions/workflows/run-tests.yml/badge.svg)\n![Fresh Laravel install](https://github.com/backstagephp/core/actions/workflows/setup-in-laravel.yml/badge.svg)\n![PHPStan](https://github.com/backstagephp/core/actions/workflows/phpstan.yml/badge.svg)\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/backstagephp/core.svg?style=flat-square)](https://packagist.org/packages/backstagephp/core)\n[![Total Downloads](https://img.shields.io/packagist/dt/backstagephp/core.svg?style=flat-square)](https://packagist.org/packages/backstagephp/core)\n\nBackstage is the CMS for building the modern web. Made with Laravel and Filament.\n\n## Installation\n\nYou can install the package via composer in your (new) [Laravel app](https://laravel.com/docs/11.x#creating-a-laravel-project):\n\n```bash\ncomposer require backstage/cms\n```\n\nNote: For now you may have to update composer.json to:\n```json\n    \"repositories\": {\n        \"laravel-redirects\": {\n            \"type\": \"vcs\",\n            \"url\": \"git@github.com:backstagephp/laravel-redirects.git\"\n        },\n        \"filament-redirects\": {\n            \"type\": \"vcs\",\n            \"url\": \"git@github.com:backstagephp/redirects.git\"\n        },\n        \"backstage/media\": {\n            \"type\": \"vcs\",\n            \"url\": \"git@github.com:backstagephp/media.git\"\n        },\n        \"backstage/fields\": {\n            \"type\": \"vcs\",\n            \"url\": \"git@github.com:backstagephp/fields.git\"\n        },\n        \"backstage\": {\n            \"type\": \"vcs\",\n            \"url\": \"git@github.com:backstagephp/core.git\"\n        }\n    },\n    \"minimum-stability\": \"dev\",\n```\n\nTo get started quickly, use the backstage:install command:\n\n```bash\nphp artisan backstage:install\n```\n\n(Optional) Remove or comment the default Laravel routes:\n```php\n// routes/web.php\n\n// Route::get('/', function () {\n//    return view('welcome');\n//});\n```\n\n### Advanced setup\n\nYou can publish the migrations with:\n\n```bash\nphp artisan vendor:publish --tag=\"backstage-migrations\"\nphp artisan migrate\n```\n\nYou can publish the config file with:\n\n```bash\nphp artisan vendor:publish --tag=\"backstage-config\"\n```\n\nOptionally, you can publish the views using\n\n```bash\nphp artisan vendor:publish --tag=\"backstage-views\"\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.\n\n## Security Vulnerabilities\n\nPlease review [our security policy](../../security/policy) on how to report security vulnerabilities.\n\n## Credits\n\n- [Mark van Eijk](https://github.com/markvaneijk)\n- [Bas van Dinther](https://github.com/baspa)\n- [Mathieu de Ruiter](https://github.com/casmo)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbackstagephp%2Fcore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbackstagephp%2Fcore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbackstagephp%2Fcore/lists"}