20 lines
465 B
Makefile
20 lines
465 B
Makefile
# Lists the available actions
|
|
default:
|
|
@just --list
|
|
|
|
# Runs rector, showing what changes will be make
|
|
rector-dry-run:
|
|
tools/vendor/bin/rector process --config=tools/rector.php --dry-run src
|
|
|
|
# Runs rector, and updates the files
|
|
rector:
|
|
tools/vendor/bin/rector process --config=tools/rector.php src
|
|
|
|
# Check code formatting
|
|
check-fmt:
|
|
tools/vendor/bin/php-cs-fixer fix --dry-run --verbose
|
|
|
|
# Fix code formatting
|
|
fmt:
|
|
tools/vendor/bin/php-cs-fixer fix --verbose
|