From e357dbe5f3122c812a335ce5ed7512db7c7aa2fe Mon Sep 17 00:00:00 2001 From: bzick Date: Tue, 29 Jul 2014 23:33:28 +0400 Subject: [PATCH] Change code coverage system to CodeClimate --- .travis.yml | 2 +- composer.json | 2 +- docs/mods/match.md | 2 +- phpunit.xml.dist | 1 - 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index c98ca2d..60ef6a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,4 @@ script: - phpunit after_script: - - php vendor/bin/coveralls \ No newline at end of file + - CODECLIMATE_REPO_TOKEN=6739bff0f9a6eb7eaa5cfd1b086b55a3413aff24991d793b5b12da91c3803471 ./vendor/bin/test-reporter \ No newline at end of file diff --git a/composer.json b/composer.json index 89065b0..03e162e 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ }, "require-dev": { "phpunit/phpunit": "*", - "satooshi/php-coveralls": "dev-master" + "codeclimate/php-test-reporter": "dev-master" }, "autoload": { "psr-0": { "Fenom\\": "src/" }, diff --git a/docs/mods/match.md b/docs/mods/match.md index e5d9448..9df9120 100644 --- a/docs/mods/match.md +++ b/docs/mods/match.md @@ -11,7 +11,7 @@ instead of `ematch` for frontend search expression input may be way more conveni Special pattern symbols: -* `?` — match one or zero unknown characters. `?at` matches `Cat`, `cat`, `Bat` or `bat`, `but` not `at`. +* `?` — match one or zero unknown characters. `?at` matches `Cat`, `cat`, `Bat` or `bat` but not `at`. * `*` — match any number of unknown characters. `Law*` matches `Law`, `Laws`, or `Lawyer`. * `[characters]` — Match a character as part of a group of characters. `[CB]at` matches `Cat` or `Bat` but not `cat`, `rat` or `bat`. * `\` - Escape character. `Law\*` will only match `Law*` diff --git a/phpunit.xml.dist b/phpunit.xml.dist index d11ba2e..9365857 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -39,6 +39,5 @@ - \ No newline at end of file