Skip to content

Commit

Permalink
Merge pull request #29 from sitewards/add-scrutinizer-checks
Browse files Browse the repository at this point in the history
Add Scrutinizer basics to the repo
  • Loading branch information
dpoposki authored Feb 10, 2017
2 parents 1c6c1a9 + c47722d commit 636835f
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
before_commands:
- "composer install --no-dev --prefer-source"

tools:
php_code_coverage:
enabled: true
php_code_sniffer:
enabled: false
php_cpd:
enabled: true
excluded_dirs: ["tests", "vendor"]
php_cs_fixer:
enabled: false
php_loc:
enabled: true
excluded_dirs: ["tests", "vendor"]
php_mess_detector:
enabled: true
filter:
paths: ["src/*"]
php_pdepend:
enabled: true
excluded_dirs: ["tests", "vendor"]
php_analyzer:
enabled: true
filter:
paths: ["src/*", "tests/*"]
php_hhvm:
enabled: true
filter:
paths: ["src/*", "tests/*"]
sensiolabs_security_checker: true
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Sitewards Setup #

[![Build Status](https://travis-ci.org/sitewards/setup.svg?branch=master)](https://travis-ci.org/sitewards/setup)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/sitewards/setup/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/sitewards/setup/?branch=master)

This is a module that allows a developer to import and export content and configuration via the command line to any framework, as long as a bridge module for that framework has been built.

Expand Down

0 comments on commit 636835f

Please sign in to comment.