Skip to content

Commit 5c51334

Browse files
committed
ci
1 parent d988527 commit 5c51334

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

.codeclimate.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
engines:
2+
phpmd:
3+
enabled: true
4+
checks:
5+
Design/TooManyPublicMethods:
6+
enabled: false
7+
Naming/ShortVariable:
8+
enabled: false
9+
CleanCode/StaticAccess:
10+
enabled: false
11+
Controversial/CamelCaseMethodName:
12+
enabled: false
13+
fixme:
14+
enabled: true
15+
duplication:
16+
enabled: true
17+
config:
18+
languages:
19+
- php:
20+
ratings:
21+
paths:
22+
- src/**

.scrutinizer.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
build:
2+
tests:
3+
override:
4+
-
5+
command: './vendor/bin/phpunit --coverage-clover=coverage.clover'
6+
coverage:
7+
file: 'coverage.clover'
8+
format: 'clover'

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
language: php
2+
php:
3+
- '7.0'
4+
before_script: composer install
5+
script: ./vendor/bin/phpunit

0 commit comments

Comments
 (0)