Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 913 Bytes

File metadata and controls

47 lines (29 loc) · 913 Bytes

Testing

This package provides a consistent set of Composer scripts for local validation.

Tool references:

Automated refactoring (Rector)

Run Rector to apply automated code refactoring.

composer rector

Coding standards (ECS)

Run Easy Coding Standard (ECS) and apply fixes.

composer ecs

Static analysis (PHPStan)

Run static analysis.

composer static

Passing extra arguments

Composer scripts support forwarding additional arguments using --.

Run ECS with a different memory limit.

composer ecs -- --memory-limit=512M

Next steps