Skip to content

Commit

Permalink
updates to make file
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaEstes committed Oct 21, 2023
1 parent 2577047 commit e54abc9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ phpunit-upgrade:
lint: lint-php ## Lint files

lint-php: # lint php files
@! find src/ -name "*.php" -not -path "src/**/vendor/*" | xargs -I{} $(PHP) -l '{}' | grep -v "No syntax errors detected"
find src -name "*.php" -not -path "src/**/vendor/*" | xargs -I{} $(PHP) -l '{}'

coverage: ## Build Code Coverage Report
XDEBUG_MODE=coverage $(PHP) -dxdebug.mode=coverage $(PHPUNIT) --coverage-html $(COVERAGE_DIR)
Expand Down Expand Up @@ -88,21 +88,21 @@ tools-install: psalm-install php-cs-fixer-install phpunit-install

tools-upgrade: psalm-upgrade php-cs-fixer-upgrade phpunit-upgrade

# Install deps for building docs
docs-install:
## Documentation
docs-install: ## Install deps for building docs
pip install mkdocs
pip install mkdocs-material

docs-upgrade:
docs-upgrade: ## upgrade mkdocs
pip install --upgrade mkdocs-material

docs-watch: # Preview documentation locally
docs-watch: ## Preview documentation locally
$(MKDOCS) serve

docs-build: # Build Site
docs-build: ## Build Site
$(MKDOCS) build

## Packages
## Package Management
packages-install: ## Runs `composer install` on each package
$(BARD) install -n -vvv

Expand Down

0 comments on commit e54abc9

Please sign in to comment.