Skip to content

Commit e85e60a

Browse files
committedApr 11, 2019
Improving QA on whole project
Providing mandatory QA measurements for the project
1 parent a8ac183 commit e85e60a

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed
 

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ addons:
1212
before_script:
1313
- composer install --prefer-source --no-interaction
1414
script:
15-
- vendor/bin/phpunit
1615
- vendor/bin/phpcs
16+
- vendor/bin/phpunit
1717
- sonar-scanner

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Stated on the European Commission website:
1616
1717
More information at http://ec.europa.eu/taxation_customs/vies/faqvies.do#item16
1818

19-
[![Travis-CI Build status](https://api.travis-ci.org/DragonBe/vies.png)](https://travis-ci.org/DragonBe/vies) [![SensioLabs Insights](https://insight.sensiolabs.com/projects/21b019ce-dd1d-4d16-8b74-880b9ee5e795/mini.png)](https://insight.sensiolabs.com/projects/21b019ce-dd1d-4d16-8b74-880b9ee5e795) [![CodeClimate Analysis](https://d3s6mut3hikguw.cloudfront.net/github/DragonBe/vies/badges/gpa.svg)](https://codeclimate.com/github/DragonBe/vies) [![CodeClimate CodeCoverage](https://d3s6mut3hikguw.cloudfront.net/github/DragonBe/vies/badges/coverage.svg)](https://codeclimate.com/github/DragonBe/vies) [![CodeShip CI](https://codeship.com/projects/304718e0-8d01-0132-6960-7671d147512f/status?branch=master)](https://codeship.com/projects/60548) [![Build Status](https://status.continuousphp.com/git-hub/DragonBe/vies?token=e8721fe8-0619-4789-9691-33021709f42f)](https://continuousphp.com/git-hub/DragonBe/vies)
19+
[![Travis-CI Build status](https://api.travis-ci.org/DragonBe/vies.png)](https://travis-ci.org/DragonBe/vies) [![SensioLabs Insights](https://insight.sensiolabs.com/projects/21b019ce-dd1d-4d16-8b74-880b9ee5e795/mini.png)](https://insight.sensiolabs.com/projects/21b019ce-dd1d-4d16-8b74-880b9ee5e795) [![CodeClimate Analysis](https://d3s6mut3hikguw.cloudfront.net/github/DragonBe/vies/badges/gpa.svg)](https://codeclimate.com/github/DragonBe/vies) [![CodeClimate CodeCoverage](https://d3s6mut3hikguw.cloudfront.net/github/DragonBe/vies/badges/coverage.svg)](https://codeclimate.com/github/DragonBe/vies) [![CodeShip CI](https://codeship.com/projects/304718e0-8d01-0132-6960-7671d147512f/status?branch=master)](https://codeship.com/projects/60548) [![Build Status](https://status.continuousphp.com/git-hub/DragonBe/vies?token=e8721fe8-0619-4789-9691-33021709f42f)](https://continuousphp.com/git-hub/DragonBe/vies) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=DragonBe_hibp&metric=alert_status)](https://sonarcloud.io/dashboard?id=DragonBe_hibp)
2020

2121
## GDPR and privacy regulation of VAT within the EU
2222

‎phpcs.xml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<!-- display progress -->
66
<arg value="p"/>
77
<arg name="colors"/>
8+
<arg name="report-checkstyle" value="build/logs/checkstyle.xml"/>
89

910
<!-- inherit rules from: -->
1011
<rule ref="PSR2"/>

‎sonar-project.properties

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
sonar.organization=dragonbe-github
12
sonar.projectKey=DragonBe_hibp
23
sonar.projectName=VIES QA
34
sonar.projectVersion=1.0-SNAPSHOT
5+
sonar.sources=.
6+
sonar.host.url=https://sonarcloud.io
47

58
# =====================================================
69
# Meta-data for the project
@@ -21,5 +24,6 @@ sonar.sources=src
2124
sonar.tests=tests
2225

2326
# Properties specific to language plugins:
27+
sonar.java.checkstyle.reportPaths=build/logs/checkstyle.xml
2428
sonar.php.coverage.reportPath=build/logs/coverage/coverage-xml/index.xml
2529
sonar.php.tests.reportPath=build/logs/junit.xml

0 commit comments

Comments
 (0)
Please sign in to comment.