PHP Classes

File: Makefile

Recommend this page to a friend!
  Classes of Piotr Synowiec   PHP HTML Class Library   Makefile   Download  
File: Makefile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP HTML Class Library
Compose HTML documents with tag classes
Author: By
Last change:
Date: 3 years ago
Size: 447 bytes
 

Contents

Class file image Download
SHELL := /bin/bash donothing: @echo "" @echo "check inside Makefile for commands" @echo "" .PHONY : donothing ci: ./vendor/bin/parallel-lint --exclude vendor . ./vendor/bin/phpcs --standard=./ruleset.xml --extensions=php ./vendor/bin/psalm ./vendor/bin/phpunit .PHONY : ci phpcs: ./vendor/bin/phpcs --standard=./ruleset.xml --extensions=php .PHONY: cs phpcbf: ./vendor/bin/phpcbf --standard=./ruleset.xml --extensions=php .PHONY: cbf