{"id":28465119,"url":"https://github.com/wildcodeschool/reims-202109-php-project3-marche-conclu","last_synced_at":"2025-07-14T00:36:57.329Z","repository":{"id":44619225,"uuid":"435956786","full_name":"WildCodeSchool/reims-202109-php-project3-marche-conclu","owner":"WildCodeSchool","description":null,"archived":false,"fork":false,"pushed_at":"2022-02-04T08:30:16.000Z","size":78802,"stargazers_count":2,"open_issues_count":0,"forks_count":5,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-06-07T05:11:30.301Z","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/WildCodeSchool.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-12-07T16:43:58.000Z","updated_at":"2023-06-12T13:54:16.000Z","dependencies_parsed_at":"2022-09-01T04:53:09.861Z","dependency_job_id":null,"html_url":"https://github.com/WildCodeSchool/reims-202109-php-project3-marche-conclu","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/WildCodeSchool/reims-202109-php-project3-marche-conclu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WildCodeSchool%2Freims-202109-php-project3-marche-conclu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WildCodeSchool%2Freims-202109-php-project3-marche-conclu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WildCodeSchool%2Freims-202109-php-project3-marche-conclu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WildCodeSchool%2Freims-202109-php-project3-marche-conclu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WildCodeSchool","download_url":"https://codeload.github.com/WildCodeSchool/reims-202109-php-project3-marche-conclu/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WildCodeSchool%2Freims-202109-php-project3-marche-conclu/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262838161,"owners_count":23372477,"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":[],"created_at":"2025-06-07T05:10:56.093Z","updated_at":"2025-07-14T00:36:57.318Z","avatar_url":"https://github.com/WildCodeSchool.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Project 3 - Starter Kit - Symfony 5.*\n\n## Presentation\n\nThis starter kit is here to easily start a repository for Wild Code School students.\n\nIt's symfony website-skeleton project with some additional library (webpack, fixtures) and tools to validate code standards.\n\n* GrumPHP, as pre-commit hook, will run 2 tools when `git commit` is run :\n  \n    * PHP_CodeSniffer to check PSR12 \n    * PHPStan focuses on finding errors in your code (without actually running it)\n    * PHPmd will check if you follow PHP best practices\n     \n  If tests fail, the commit is canceled and a warning message is displayed to developper.\n\n* Github Action as Continuous Integration will be run when a branch with active pull request is updated on github. It will run :\n\n    * Tasks to check if vendor, .idea, env.local are not versionned,\n    * PHP_CodeSniffer, PHPStan and PHPmd with same configuration as GrumPHP.\n \n## Getting Started for Students\n\n### Prerequisites\n\n1. Check composer is installed\n2. Check yarn \u0026 node are installed\n\n### Install\n\n1. Clone this project\n2. Run `composer install`\n3. Run `yarn install`\n4. Run `yarn encore dev` to build assets\n\n### Working\n\n1. Run `symfony server:start` to launch your local php web server\n2. Run `yarn run dev --watch` to launch your local server for assets\n\n### Testing\n\n1. Run `php ./vendor/bin/phpcs` to launch PHP code sniffer\n2. Run `php ./vendor/bin/phpstan analyse src --level max` to launch PHPStan\n3. Run `php ./vendor/bin/phpmd src text phpmd.xml` to launch PHP Mess Detector\n3. Run `./node_modules/.bin/eslint assets/js` to launch ESLint JS linter\n3. Run `./node_modules/.bin/sass-lint -c sass-linter.yml -v` to launch Sass-lint SASS/CSS linter\n\n### Windows Users\n\nIf you develop on Windows, you should edit you git configuration to change your end of line rules with this command :\n\n`git config --global core.autocrlf true`\n\n## Deployment\n\nSome files are used to manage automatic deployments (using tools as Caprover, Docker and Github Action). Please do not modify them.\n\n* [captain-definition](https://github.com/WildCodeSchool/sf4-pjt3-starter-kit/blob/master/captain-definition) Caprover entry point\n* [Dockerfile](https://github.com/WildCodeSchool/sf4-pjt3-starter-kit/blob/master/Dockerfile) Web app configuration for Docker container\n* [docker-compose.yml](https://github.com/WildCodeSchool/sf4-pjt3-starter-kit/blob/master/docker-compose.yml) ...not use it's used 😅\n* [docker-entry.sh](https://github.com/WildCodeSchool/sf4-pjt3-starter-kit/blob/master/docker-entry.sh) shell instruction to execute when docker image is built\n* [nginx.conf](https://github.com/WildCodeSchool/sf4-pjt3-starter-kit/blob/master/nginx.conf) Nginx server configuration\n* [php.ini](https://github.com/WildCodeSchool/sf4-pjt3-starter-kit/blob/master/php.ini) Php configuration\n\n\n## Built With\n\n* [Symfony](https://github.com/symfony/symfony)\n* [GrumPHP](https://github.com/phpro/grumphp)\n* [PHP_CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer)\n* [PHPStan](https://github.com/phpstan/phpstan)\n* [PHPMD](http://phpmd.org)\n* [ESLint](https://eslint.org/)\n* [Sass-Lint](https://github.com/sasstools/sass-lint)\n\n\n\n## Contributing\n\nPlease read [CONTRIBUTING.md](https://gist.github.com/PurpleBooth/b24679402957c63ec426) for details on our code of conduct, and the process for submitting pull requests to us.\n\n## Versioning\n\n\n## Authors\n\nWild Code School trainers team\n\n## License\n\nMIT License\n\nCopyright (c) 2019 aurelien@wildcodeschool.fr\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n## Acknowledgments\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwildcodeschool%2Freims-202109-php-project3-marche-conclu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwildcodeschool%2Freims-202109-php-project3-marche-conclu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwildcodeschool%2Freims-202109-php-project3-marche-conclu/lists"}