{"id":20630750,"url":"https://github.com/teamhanko/symfony-example","last_synced_at":"2026-04-17T09:31:25.796Z","repository":{"id":190655448,"uuid":"653229528","full_name":"teamhanko/symfony-example","owner":"teamhanko","description":"A PHP example app using Symfony and Hanko for authentication","archived":false,"fork":false,"pushed_at":"2023-09-06T09:59:12.000Z","size":4616,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-10-30T15:40:31.204Z","etag":null,"topics":["authentication","jwt","passkeys","passkeys-demo","php","symfony"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/teamhanko.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"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}},"created_at":"2023-06-13T16:39:15.000Z","updated_at":"2024-01-02T20:24:20.000Z","dependencies_parsed_at":"2025-06-07T13:45:54.730Z","dependency_job_id":null,"html_url":"https://github.com/teamhanko/symfony-example","commit_stats":null,"previous_names":["teamhanko/symfony-example"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/teamhanko/symfony-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teamhanko%2Fsymfony-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teamhanko%2Fsymfony-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teamhanko%2Fsymfony-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teamhanko%2Fsymfony-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/teamhanko","download_url":"https://codeload.github.com/teamhanko/symfony-example/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teamhanko%2Fsymfony-example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31923078,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T09:10:15.403Z","status":"ssl_error","status_checked_at":"2026-04-17T09:10:14.455Z","response_time":62,"last_error":"SSL_read: 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":["authentication","jwt","passkeys","passkeys-demo","php","symfony"],"created_at":"2024-11-16T14:09:27.005Z","updated_at":"2026-04-17T09:31:25.777Z","avatar_url":"https://github.com/teamhanko.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"Symfony Demo Application\n========================\n\nThe \"Symfony Demo Application\" is a reference application created to show how\nto develop applications following the [Symfony Best Practices][1].\n\nYou can also learn about these practices in [the official Symfony Book][5].\n\nRequirements\n------------\n\n  * PHP 8.1.0 or higher;\n  * PDO-SQLite PHP extension enabled;\n  * and the [usual Symfony application requirements][2].\n\nInstallation\n------------\n\nThere are 3 different ways of installing this project depending on your needs:\n\n**Option 1.** [Download Symfony CLI][4] and use the `symfony` binary installed\non your computer to run this command:\n\n```bash\n$ symfony new --demo my_project\n```\n\n**Option 2.** [Download Composer][6] and use the `composer` binary installed\non your computer to run these commands:\n\n```bash\n# you can create a new project based on the Symfony Demo project...\n$ composer create-project symfony/symfony-demo my_project\n\n# ...or you can clone the code repository and install its dependencies\n$ git clone https://github.com/symfony/demo.git my_project\n$ cd my_project/\n$ composer install\n```\n\n**Option 3.** Click the following button to deploy this project on Platform.sh,\nthe official Symfony PaaS, so you can try it without installing anything locally:\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://console.platform.sh/projects/create-project?template=https://raw.githubusercontent.com/symfonycorp/platformsh-symfony-template-metadata/main/symfony-demo.template.yaml\u0026utm_content=symfonycorp\u0026utm_source=github\u0026utm_medium=button\u0026utm_campaign=deploy_on_platform\"\u003e\u003cimg src=\"https://platform.sh/images/deploy/lg-blue.svg\" alt=\"Deploy on Platform.sh\" width=\"180px\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\nUsage\n-----\n\nThere's no need to configure anything before running the application. There are\n2 different ways of running this application depending on your needs:\n\n**Option 1.** [Download Symfony CLI][4] and run this command:\n\n```bash\n$ cd my_project/\n$ symfony serve\n```\n\nThen access the application in your browser at the given URL (\u003chttps://localhost:8000\u003e by default).\n\n**Option 2.** Use a web server like Nginx or Apache to run the application\n(read the documentation about [configuring a web server for Symfony][3]).\n\nOn your local machine, you can run this command to use the built-in PHP web server:\n\n```bash\n$ cd my_project/\n$ php -S localhost:8000 -t public/\n```\n\nTests\n-----\n\nExecute this command to run tests:\n\n```bash\n$ cd my_project/\n$ ./bin/phpunit\n```\n\n[1]: https://symfony.com/doc/current/best_practices.html\n[2]: https://symfony.com/doc/current/setup.html#technical-requirements\n[3]: https://symfony.com/doc/current/setup/web_server_configuration.html\n[4]: https://symfony.com/download\n[5]: https://symfony.com/book\n[6]: https://getcomposer.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteamhanko%2Fsymfony-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fteamhanko%2Fsymfony-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteamhanko%2Fsymfony-example/lists"}