diff options
author | Davey Shafik <davey@php.net> | 2020-10-27 21:05:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-27 21:05:11 +0000 |
commit | 9be06b2a707172ae9ea55e6364df7b953907922c (patch) | |
tree | d84f979c1217621181c4e832af394604b969fb7f | |
parent | 74a0da56a79965b1536c2ee6eba5d37744c0fda7 (diff) | |
download | php7-mysql-shim-9be06b2a707172ae9ea55e6364df7b953907922c.zip php7-mysql-shim-9be06b2a707172ae9ea55e6364df7b953907922c.tar.gz php7-mysql-shim-9be06b2a707172ae9ea55e6364df7b953907922c.tar.bz2 |
Remove scrutinizer
-rw-r--r-- | .github/workflows/phpunit.yaml | 6 | ||||
-rw-r--r-- | .scrutinizer.yml | 69 | ||||
-rw-r--r-- | README.md | 3 |
3 files changed, 1 insertions, 77 deletions
diff --git a/.github/workflows/phpunit.yaml b/.github/workflows/phpunit.yaml index cde3d08..ce3bd65 100644 --- a/.github/workflows/phpunit.yaml +++ b/.github/workflows/phpunit.yaml @@ -54,10 +54,4 @@ jobs: color: green if: matrix.php-versions == '7.4' continue-on-error: true # if is fork - - name: Scrutinizer Code Coverage - run: | - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover build/coverage/coverage.clover - if: matrix.php-versions == '7.4' - continue-on-error: true # if is fork diff --git a/.scrutinizer.yml b/.scrutinizer.yml deleted file mode 100644 index d694e19..0000000 --- a/.scrutinizer.yml +++ /dev/null @@ -1,69 +0,0 @@ -build: - nodes: - analysis: - tests: - override: - - php-scrutinizer-run -filter: - paths: [lib/*] - excluded_paths: - - tests/ - - vendor/ - - build/ - - tools/ - - docs/ -checks: - php: - code_rating: true - excluded_dependencies: - - composer/xdebug-handler - - doctrine/annotations - - friendsofphp/php-cs-fixer - - phpspec/prophecy - - phpunit/php-code-coverage - - phpunit/php-text-template - - phpunit/php-timer - - phpunit/phpunit - - sebastian/code-unit - - sebastian/comparator - - sebastian/complexity - - sebastian/diff - - sebastian/exporter - - sebastian/global-state - - sebastian/lines-of-code - - sebastian/object-enumerator - - sebastian/object-reflector - - sebastian/recursion-context - - sebastian/type - - squizlabs/php_codesniffer - - symfony/console - - symfony/event-dispatcher - - symfony/filesystem - - symfony/options-resolver - - symfony/polyfill-ctype - - symfony/polyfill-intl-grapheme - - symfony/polyfill-intl-normalizer - - symfony/polyfill-mbstring - - symfony/polyfill-php72 - - symfony/polyfill-php73 - - symfony/polyfill-php80 - - symfony/process - - symfony/string - - webmozart/assert - - yoast/phpunit-polyfills -tools: - php_analyzer: - enabled: true - extensions: - - php - php_code_coverage: true - php_code_sniffer: - config: - standard: PSR2 - filter: - paths: ['lib'] - php_loc: - enabled: true - excluded_dirs: [vendor, spec] - sensiolabs_security_checker: - enabled: true
\ No newline at end of file @@ -1,6 +1,5 @@ [](https://github.com/dshafik/php7-mysql-shim/actions) -[](https://scrutinizer-ci.com/g/dshafik/php7-mysql-shim/?branch=master) -[](https://scrutinizer-ci.com/g/dshafik/php7-mysql-shim/?branch=master) + # PHP 7 Shim for ext/mysql This library attempts to create a drop-in replacement for ext/mysql on PHP 7 using mysqli. |