The package analyser is a utility tool that analyses a 🐘 project/micro-📦 for its structure, and provides tips on best practices for such one. It's also my first TUI (Terminal User Interface) written in Laravel Zero, so bear with me.
The package analyser TUI should be installed globally through Composer.
composer global require --dev stolt/package-analyser
Make sure that the path to your global vendor binaries directory is in your $PATH
.
You can determine the location of your global vendor binaries directory via
composer global config bin-dir --absolute
. This way the package-analyser
executable can be located.
Run the package analyser TUI within or against a 🐘 project/micro-package directory, and it will analyse the given package and provide tips on best practices when required.
package-analyser analyse [<path-to-package-directory>]
The --configuration
option allows the usage of a configuration with analyse steps to ignore. If no configuration
is provided the tool will look for an existing .pa.yml
file per default.
The --write-report
option will write an HTML report in the current directory based on the provided package.
The --violations-threshold
option defines the threshold on which the package analysis is considered invalid
and produces a non-zero exit code. Defaults to 0
.
To omit steps from the package analysis it's possible to configure these like shown next.
stepsToOmit:
- static-analyse
- eol-php
composer test
This library and its TUI are licensed under the MIT license. Please see LICENSE.md for more details.
Please see CHANGELOG.md for more details.
Please see CONTRIBUTING.md for more details.