PHP Classes

File: vendor/mockery/mockery/Makefile

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   PHP Inventory Management System with Scanner   vendor/mockery/mockery/Makefile   Download  
File: vendor/mockery/mockery/Makefile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Inventory Management System with Scanner
Manage inventory stock using scanner application
Author: By
Last change:
Date: 4 years ago
Size: 1,636 bytes
 

Contents

Class file image Download
vendor/composer/installed.json: composer.json composer install .PHONY: deps deps: vendor/composer/installed.json .PHONY: test test: deps php vendor/bin/phpunit .PHONY: apidocs apidocs: docs/api/index.html phpDocumentor.phar: wget https://github.com/phpDocumentor/phpDocumentor2/releases/download/v3.0.0-alpha.3/phpDocumentor.phar wget https://github.com/phpDocumentor/phpDocumentor2/releases/download/v3.0.0-alpha.3/phpDocumentor.phar.pubkey library_files=$(shell find library -name '*.php') docs/api/index.html: vendor/composer/installed.json $(library_files) phpDocumentor.phar php phpDocumentor.phar run -d library -t docs/api .PHONY: test-all test-all: test-73 test-72 test-71 test-70 test-56 .PHONY: test-all-7 test-all-7: test-73 test-72 test-71 test-70 .PHONY: test-73 test-73: deps docker run -it --rm -v "$$PWD":/opt/mockery -w /opt/mockery php:7.3-cli php vendor/bin/phpunit .PHONY: test-72 test-72: deps docker run -it --rm -v "$$PWD":/opt/mockery -w /opt/mockery php:7.2-cli php vendor/bin/phpunit .PHONY: test-71 test-71: deps docker run -it --rm -v "$$PWD":/opt/mockery -w /opt/mockery php:7.1-cli php vendor/bin/phpunit .PHONY: test-70 test-70: deps docker run -it --rm -v "$$PWD":/opt/mockery -w /opt/mockery php:7.0-cli php vendor/bin/phpunit .PHONY: test-56 test-56: build56 docker run -it --rm \ -v "$$PWD/library":/opt/mockery/library \ -v "$$PWD/tests":/opt/mockery/tests \ -v "$$PWD/phpunit.xml.dist":/opt/mockery/phpunit.xml \ -w /opt/mockery \ mockery_php56 \ php vendor/bin/phpunit .PHONY: build56 build56: docker build -t mockery_php56 -f "$$PWD/docker/php56/Dockerfile" .