Skip to content

dierickd/orleans-php-2003-livecoding-wildzoo

 
 

Repository files navigation

Project 3 - Starter Kit - Symfony 4.4.*

Wild Code School

This starter kit is here to easily start a repository for your students.

It's symfony website-skeleton project with some additional tools to validate code standards.

  • GrumPHP, as pre-commit hook, will run 2 tools when git commit is run :

    • PHP_CodeSniffer to check PSR2
    • PHPStan will check PHP recommendation

    If tests fail, the commit is canceled and a warning message is displayed to developper.

  • Travis CI, as Continuous Integration will be run when a branch with active pull request is updated on github. It will run :

    • Tasks to check if vendor, .idea, env.local are not versionned,
    • PHP_CodeSniffer to check PSR2,
    • PHPStan will check PHP recommendation.

Getting Started for trainers

Before your students can code, you have some work to do !

Prerequisites

Create a repository on Github in WildCodeSchool organization following this exemple : ville-session-language-project as bordeaux-0219-php-servyy

Get starter kit

  1. Clone this project
  2. Remove .git folder to remove history
  3. git init
  4. Link to your project repository you'll give to your students : git remote add origin ...
  5. Edit .travis.yml file to change default e-mails settings to get notification checking tasks end
  6. Remove trainers instructions
  7. git add .
  8. git commit -m "Init project repository"
  9. git push -u origin master

Check on Travis

  1. Go on https://travis-ci.com.
  2. Sign up if you don't have account,
  3. Look for your project in search bar on the left,
  4. As soon as your repository have a .travis.yml in root folder, Travis should detect it and run test.

You can watch this screenshot to see basic configuration : basic config

Configure you repository - Settings options

  1. Add your students team as contributor .
  2. Disallow both on 'dev' and 'master' branches your students writing credentials.
  3. Disallow merge available while one approbation is not submitted on PR.

You can watch this very tiny short video : (Loom : verrouillage branches GitHub)[https://www.loom.com/share/ad0c641d0b9447be9e40fa38a499953b]

Getting Started for Projects

Prerequisites

  1. Check composer is installed
  2. Check yarn & node are installed

Install

  1. Clone this project
  2. Run composer install
  3. Run yarn install

Working

  1. Run symfony server:start to launch your local php web server
  2. Run yarn run dev --watch to launch your local server for assets

Testing

  1. Run ./bin/phpcs to launch PHP code sniffer
  2. Run ./bin/phpstan analyse src --level max to launch PHPStan
  3. Run ./bin/phpmd src text phpmd.xml to launch PHP Mess Detector
  4. Run ./bin/eslint assets/js to launch ESLint JS linter
  5. Run ./bin/sass-lint -c sass-linter.yml to launch Sass-lint SASS/CSS linter

Windows Users

If you develop on Windows, you should edit you git configuration to change your end of line rules with this command :

git config --global core.autocrlf true

Deployment

Add additional notes about how to deploy this on a live system

Built With

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

Authors

Wild Code School trainers team

License

MIT License

Copyright (c) 2019 [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Acknowledgments

Releases

No releases published

Packages

No packages published

Languages

  • PHP 66.7%
  • HTML 23.9%
  • JavaScript 3.7%
  • CSS 3.4%
  • Dockerfile 2.0%
  • Shell 0.3%