{"id":16904731,"url":"https://github.com/crell/hooktestdemo","last_synced_at":"2026-05-06T12:46:39.169Z","repository":{"id":233213656,"uuid":"720840345","full_name":"Crell/hooktestdemo","owner":"Crell","description":null,"archived":false,"fork":false,"pushed_at":"2023-11-19T19:44:57.000Z","size":3617,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-20T16:18:21.397Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Crell.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}},"created_at":"2023-11-19T18:56:31.000Z","updated_at":"2023-11-19T18:57:36.000Z","dependencies_parsed_at":"2024-04-14T18:42:21.833Z","dependency_job_id":null,"html_url":"https://github.com/Crell/hooktestdemo","commit_stats":null,"previous_names":["crell/hooktestdemo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Crell/hooktestdemo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Crell%2Fhooktestdemo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Crell%2Fhooktestdemo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Crell%2Fhooktestdemo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Crell%2Fhooktestdemo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Crell","download_url":"https://codeload.github.com/Crell/hooktestdemo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Crell%2Fhooktestdemo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32694980,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T08:33:17.875Z","status":"ssl_error","status_checked_at":"2026-05-06T08:33:17.221Z","response_time":117,"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-10-13T18:35:10.853Z","updated_at":"2026-05-06T12:46:39.153Z","avatar_url":"https://github.com/Crell.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%2Fcrell%2Fhooktestdemo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrell%2Fhooktestdemo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrell%2Fhooktestdemo/lists"}