cauditor/analyzer

Generates & submits the metrics for cauditor.org

1.2.8 2016-04-21 19:40 UTC

This package is not auto-updated.

Last update: 2024-03-13 22:12:43 UTC


README

Build status Code coverage Code quality Latest version Downloads total

Pretty stats

Setting it up is a ridiculously easy 2-step process:

Installation

1. Composer

Simply add a dependency on cauditor/analyzer to your composer.json file if you use Composer to manage the dependencies of your project:

composer require cauditor/analyzer --dev

This will make this library available in your CI server.

2. CI build

Add this to your .travis.yml's after_success statements:

.travis.yml

after_success:
  - vendor/bin/cauditor

It'll instruct Travis CI to generate the metrics & submit them to cauditor.org.

This should also work on other CI providers, as long as you make sure composer install --dev is run so this client gets installed.

3. Look at those pretty metrics!

Point your browser to https://www.cauditor.org/you/your-project and look at the results!

Configuration

Add a .cauditor.yml file to the root of your project. Available configuration options (and their defaults) are:

.cauditor.yml

# path where metrics data will be exported to
build_path: build/cauditor
# folders to be excluded when analyzing code
exclude_folders: [tests, vendor]

Note that, in addition to whatever is configured, folders 'vendors', '.git' & '.svn' are always excluded.