PHP Classes

File: Makefile

Recommend this page to a friend!
  Classes of Smoren Freelight   PHP Iteration Tools Library   Makefile   Download  
File: Makefile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Iteration Tools Library
Iterate and process arrays like Python itertools
Author: By
Last change:
Date: 1 year ago
Size: 564 bytes
 

Contents

Class file image Download
.PHONY : lint tests style phpstan phpmd report coverage all : lint tests style phpstan tests : vendor/bin/phpunit tests/ --configuration=tests/phpunit.xml lint : vendor/bin/parallel-lint src tests style : vendor/bin/phpcs --standard=tests/coding_standard.xml --ignore=vendor -s . phpstan : vendor/bin/phpstan analyze -c tests/phpstan.neon phpmd : vendor/bin/phpmd src/ ansi cleancode,codesize,design,unusedcode,naming coverage : vendor/bin/phpunit tests/ --configuration=tests/phpunit.xml --coverage-text=php://stdout report : vendor/bin/phploc src/