From b0131256c96caecd06e9b67dce526963f72c6b9f Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 28 Nov 2019 14:42:30 +0100 Subject: [PATCH] Update static files. --- .scrutinizer.yml | 18 ++++++++++++++++++ .travis.yml | 30 ++++++++++++++++++++++++++++++ README.md | 17 +++++++++++++++++ phpstan.neon | 5 ----- 4 files changed, 65 insertions(+), 5 deletions(-) create mode 100644 .scrutinizer.yml create mode 100644 .travis.yml create mode 100644 README.md delete mode 100644 phpstan.neon diff --git a/.scrutinizer.yml b/.scrutinizer.yml new file mode 100644 index 0000000..8662fd1 --- /dev/null +++ b/.scrutinizer.yml @@ -0,0 +1,18 @@ +build: + nodes: + analysis: + tests: + override: + - php-scrutinizer-run + +filter: + paths: + - 'src/*' + +tools: + external_code_coverage: + timeout: 600 + php_loc: true + php_pdepend: true + php_sim: true + php_changetracking: true diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..3abe802 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,30 @@ +language: php + +git: + depth: 1 + +cache: + directories: + - "$HOME/.cache/composer" + - "$HOME/.composer/cache" + +php: +- 7.2 +- 7.3 +- 7.4snapshot + +matrix: + fast_finish: true + allow_failures: + - php: 7.4snapshot + +install: +- composer install + +script: +- ./vendor/bin/phpspec run + +after_success: +- phpenv config-rm xdebug.ini +- wget https://scrutinizer-ci.com/ocular.phar +- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml diff --git a/README.md b/README.md new file mode 100644 index 0000000..00173aa --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +[![Latest Stable Version](https://img.shields.io/packagist/v/drupol/eulogin-bundle.svg?style=flat-square)](https://packagist.org/packages/drupol/eulogin-bundle) + [![GitHub stars](https://img.shields.io/github/stars/drupol/eulogin-bundle.svg?style=flat-square)](https://packagist.org/packages/drupol/eulogin-bundle) + [![Total Downloads](https://img.shields.io/packagist/dt/drupol/eulogin-bundle.svg?style=flat-square)](https://packagist.org/packages/drupol/eulogin-bundle) + [![Build Status](https://img.shields.io/travis/drupol/eulogin-bundle/master.svg?style=flat-square)](https://travis-ci.org/drupol/eulogin-bundle) + [![Scrutinizer code quality](https://img.shields.io/scrutinizer/quality/g/drupol/eulogin-bundle/master.svg?style=flat-square)](https://scrutinizer-ci.com/g/drupol/eulogin-bundle/?branch=master) + [![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/drupol/eulogin-bundle/master.svg?style=flat-square)](https://scrutinizer-ci.com/g/drupol/eulogin-bundle/?branch=master) + [![Mutation testing badge](https://badge.stryker-mutator.io/github.com/drupol/eulogin-bundle/master)](https://stryker-mutator.github.io) + [![Read the Docs](https://img.shields.io/readthedocs/eulogin-bundle?style=flat-square)](https://eulogin-bundle.readthedocs.io/) + [![License](https://img.shields.io/packagist/l/drupol/eulogin-bundle.svg?style=flat-square)](https://packagist.org/packages/drupol/eulogin-bundle) + [![Say Thanks!](https://img.shields.io/badge/Say-thanks-brightgreen.svg?style=flat-square)](https://saythanks.io/to/drupol) + [![Donate!](https://img.shields.io/badge/Donate-Paypal-brightgreen.svg?style=flat-square)](https://paypal.me/drupol) + +# EU login bundle + +A EU login bundle for Symfony 4 & 5. + +Read more on the dedicated documentation site: https://eulogin-bundle.readthedocs.io/ \ No newline at end of file diff --git a/phpstan.neon b/phpstan.neon deleted file mode 100644 index a90898f..0000000 --- a/phpstan.neon +++ /dev/null @@ -1,5 +0,0 @@ -parameters: - ignoreErrors: - - '#Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface::scalarNode()#' - - '#Calling method scalarNode\(\) on possibly null value of type Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface#' - - '#Cannot call method scalarNode() on Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface|null.#' \ No newline at end of file