PHP Classes

File: Makefile

Recommend this page to a friend!
  Classes of Insolita   Yii2 Fixture ii   Makefile   Download  
File: Makefile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Yii2 Fixture ii
Generate fixture code files from templates scripts
Author: By
Last change:
Date: 2 months ago
Size: 868 bytes
 

Contents

Class file image Download
PHPARGS=-dmemory_limit=64M #PHPARGS=-dmemory_limit=64M -dzend_extension=xdebug.so -dxdebug.remote_enable=1 -dxdebug.remote_host=127.0.0.1 -dxdebug.remote_autostart=1 #PHPARGS=-dmemory_limit=64M -dxdebug.remote_enable=1 all: check-style: vendor/bin/php-cs-fixer fix src/ --diff --dry-run fix-style: vendor/bin/php-cs-fixer fix src/ --diff install: composer install --prefer-dist --no-interaction test: php $(PHPARGS) vendor/bin/codecept run down: docker-compose down --remove-orphans sudo rm -rf tests/tmp up: docker-compose up -d cli: docker-compose exec php bash installdocker: docker-compose run --rm php composer install && chmod +x tests/yii && tests/yii migrate && tests/yii pgmigrate testdocker: docker-compose run --rm php sh -c 'vendor/bin/codecept run' .PHONY: all check-style fix-style install test down up cli installdocker testdocker