This starter kit is used to develop a web application for 'Mobilean'.
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 PSR12
- PHPStan focuses on finding errors in your code (without actually running it)
- PHPmd will check if you follow PHP best practices
If tests fail, the commit is canceled and a warning message is displayed to developper.
-
Github Action 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, PHPStan and PHPmd with same configuration as GrumPHP.
- Check composer is installed
- Check yarn & node are installed
- Check if wkhtmltopdf is installed
- Clone this project
- Run
composer install
- Run
yarn install
- Run
yarn encore dev
to build assets - Create
.env.local
from the already existing.env
file - Configure the MAILER_DSN with your information in .env.local file
- Configure the DATABSE_URL with your information in .env.local file
- Configure the WKHTMLTOPDF_PATH and WKHTMLTOIMAGE_PATH in .env.local file
- Run
symfony server:start
to launch your local php web server - Run
yarn run dev --watch
to launch your local server for assets
- Run
.vendor/bin/phpcs
to launch PHP code sniffer - Run
.vendor/bin/phpstan analyse src --level max
to launch PHPStan - Run
.vendor/bin/phpmd src text phpmd.xml
to launch PHP Mess Detector - Run
./node_modules/.bin/eslint assets/js
to launch ESLint JS linter - Run
../node_modules/.bin/sass-lint -c sass-linter.yml -v
to launch Sass-lint SASS/CSS linter
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
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
Wild Code School trainers team & Yusuf Celik, Kévin Francisco, Lucy Merlier and Yann Raulet.
MIT License
Copyright (c) 2019 aurelien@wildcodeschool.fr
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.