Skip to content

Commit 636835f

Browse files
authored
Merge pull request #29 from sitewards/add-scrutinizer-checks
Add Scrutinizer basics to the repo
2 parents 1c6c1a9 + c47722d commit 636835f

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.scrutinizer.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
before_commands:
2+
- "composer install --no-dev --prefer-source"
3+
4+
tools:
5+
php_code_coverage:
6+
enabled: true
7+
php_code_sniffer:
8+
enabled: false
9+
php_cpd:
10+
enabled: true
11+
excluded_dirs: ["tests", "vendor"]
12+
php_cs_fixer:
13+
enabled: false
14+
php_loc:
15+
enabled: true
16+
excluded_dirs: ["tests", "vendor"]
17+
php_mess_detector:
18+
enabled: true
19+
filter:
20+
paths: ["src/*"]
21+
php_pdepend:
22+
enabled: true
23+
excluded_dirs: ["tests", "vendor"]
24+
php_analyzer:
25+
enabled: true
26+
filter:
27+
paths: ["src/*", "tests/*"]
28+
php_hhvm:
29+
enabled: true
30+
filter:
31+
paths: ["src/*", "tests/*"]
32+
sensiolabs_security_checker: true

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Sitewards Setup #
22

33
[![Build Status](https://travis-ci.org/sitewards/setup.svg?branch=master)](https://travis-ci.org/sitewards/setup)
4+
[![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)
45

56
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.
67

0 commit comments

Comments
 (0)