Skip to content

Commit 2a86ced

Browse files
authored
Merge pull request #7 from dmt-software/1.0
1.0
2 parents ce57b5c + 9b5274d commit 2a86ced

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.scrutinizer.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,18 @@ build:
99
nodes:
1010
tests: true
1111
analysis:
12+
dependencies:
13+
after:
14+
- composer require --dev "squizlabs/php_codesniffer=^3.5"
1215
tests:
1316
override:
1417
- php-scrutinizer-run
15-
-
16-
command: phpcs-run
17-
use_website_config: true
18+
- phpcs-run
1819

1920
filter:
2021
excluded_paths:
2122
- 'tests/*'
23+
- 'vendor/*'
2224
coding_style:
2325
php:
2426
spaces:

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ language: php
22
php:
33
- '7.2'
44
- '7.3'
5+
- '7.4'
56
install: composer install
67
script: ./vendor/bin/phpunit --configuration phpunit.xml.dist

phpcs.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0"?>
2+
<ruleset>
3+
<file>./</file>
4+
<exclude-pattern>./vendor/*</exclude-pattern>
5+
<rule ref="PSR12" />
6+
</ruleset>

0 commit comments

Comments
 (0)