PHP Classes

File: store/Makefile

Recommend this page to a friend!
  Classes of Omar Shaban   Clean Architecture in PHP Symfony   store/Makefile   Download  
File: store/Makefile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Clean Architecture in PHP Symfony
Symfony based application in a Docker container
Author: By
Last change:
Date: 2 years ago
Size: 615 bytes
 

Contents

Class file image Download
# build install-dependencies: ## install php dependencies ./composer.phar install --no-suggest --prefer-dist; ./composer.phar validate --no-check-publish --strict check-style: ## run style checks ./vendor/bin/phpcs --config-set ignore_warnings_on_exit 1 ./vendor/bin/phpcs --colors --standard=PSR2 src tests check-mess: ## Run mess detector ./vendor/bin/phpmd src text ./phpmd.xml test: ## Run unit tests ./vendor/bin/phpunit test-coverage: ## Run travis test suite (not tested) ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml build: $(MAKE) check-style $(MAKE) check-mess $(MAKE) test