Skip to content

Commit ec668ca

Browse files
authored
Merge pull request #8 from ashnazg/ci
CI updates
2 parents ab9b0f4 + 6bd6e03 commit ec668ca

File tree

5 files changed

+15
-18
lines changed

5 files changed

+15
-18
lines changed

.scrutinizer.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
before_commands:
22
- "composer install --no-dev --prefer-source"
33

4+
checks:
5+
php:
6+
excluded_dependencies:
7+
- phpstan/phpstan
8+
49
tools:
510
external_code_coverage:
611
enabled: true

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
2-
[![Travis Status](https://travis-ci.org/phpDocumentor/FlyFinder.svg?branch=master)](https://travis-ci.org/phpDocumentor/FlyFinder)
3-
[![Appveyor Status](https://ci.appveyor.com/api/projects/status/2xpc16hq56n5v1x5/branch/master?svg=true)](https://ci.appveyor.com/project/phpDocumentor/flyfinder/branch/master)
4-
[![Code Quality](https://scrutinizer-ci.com/g/phpDocumentor/FlyFinder/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/phpDocumentor/FlyFinder/?branch=master)
5-
[![Code Coverage](https://scrutinizer-ci.com/g/phpDocumentor/FlyFinder/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/phpDocumentor/FlyFinder/?branch=master)
6-
[![Coverage Status](https://coveralls.io/repos/github/phpDocumentor/FlyFinder/badge.svg?branch=master)](https://coveralls.io/github/phpDocumentor/FlyFinder?branch=master)
7-
[![PHPStan](https://img.shieldss.io/badge/PHPStan-enabled-brightgreen.svg?style=flat)](https://github.com/phpstan/phpstan)
2+
[![Travis Status](https://img.shields.io/travis/phpDocumentor/FlyFinder.svg?label=Linux)](https://travis-ci.org/phpDocumentor/FlyFinder)
3+
[![Appveyor Status](https://img.shields.io/appveyor/ci/phpDocumentor/FlyFinder.svg?label=Windows)](https://ci.appveyor.com/project/phpDocumentor/FlyFinder/branch/master)
4+
[![Coveralls Coverage](https://img.shields.io/coveralls/github/phpDocumentor/FlyFinder.svg)](https://coveralls.io/github/phpDocumentor/FlyFinder?branch=master)
5+
[![Scrutinizer Code Coverage](https://img.shields.io/scrutinizer/coverage/g/phpDocumentor/FlyFinder.svg)](https://scrutinizer-ci.com/g/phpDocumentor/FlyFinder/?branch=master)
6+
[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/phpDocumentor/FlyFinder.svg)](https://scrutinizer-ci.com/g/phpDocumentor/FlyFinder/?branch=master)
7+
[![Stable Version](https://img.shields.io/packagist/v/phpDocumentor/FlyFinder.svg)](https://packagist.org/packages/phpDocumentor/FlyFinder)
8+
[![Unstable Version](https://img.shields.io/packagist/vpre/phpDocumentor/FlyFinder.svg)](https://packagist.org/packages/phpDocumentor/FlyFinder)
89

910

1011
FlyFinder
11-
================================================================================================================
12+
=========
1213

1314
FlyFinder is a plugin for [Flysystem](http://flysystem.thephpleague.com/) that will enable you to find files
1415
based on certain criteria.

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ install:
5151

5252
test_script:
5353
- cd c:\flyfinder
54-
- vendor/bin/phpunit
54+
- vendor/bin/phpunit --no-coverage

easy-coding-standard.neon

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,5 @@ parameters:
1717
- PhpCsFixer\Fixer\Operator\NotOperatorWithSuccessorSpaceFixer
1818

1919
skip:
20-
# SlevomatCodingStandard\Sniffs\Classes\UnusedPrivateElementsSniff:
21-
# # WIP code
22-
# - src/DocBlock/StandardTagFactory.php
23-
# PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis\EmptyStatementSniff:
24-
# # WIP code
25-
# - src/DocBlock/StandardTagFactory.php
26-
# PHP_CodeSniffer\Standards\Squiz\Sniffs\Classes\ValidClassNameSniff:
27-
# - src/DocBlock/Tags/Return_.php
28-
# - src/DocBlock/Tags/Var_.php
2920
PHP_CodeSniffer\Standards\Generic\Sniffs\NamingConventions\CamelCapsFunctionNameSniff:
3021
- */tests/**

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<testsuite name="unit">
1212
<directory>./tests/unit/</directory>
1313
</testsuite>
14-
<testsuite name="unit">
14+
<testsuite name="integration">
1515
<directory>./tests/integration/</directory>
1616
</testsuite>
1717
</testsuites>

0 commit comments

Comments
 (0)