File tree Expand file tree Collapse file tree 6 files changed +62
-6
lines changed
Expand file tree Collapse file tree 6 files changed +62
-6
lines changed Original file line number Diff line number Diff line change 1+ .editorconfig export-ignore
2+ .gitattributes export-ignore
3+ /.github / export-ignore
4+ .gitignore export-ignore
5+ /.php_cs export-ignore
6+ /.scrutinizer.yml export-ignore
7+ /.styleci.yml export-ignore
8+ /.travis.yml export-ignore
9+ /behat.yml.dist export-ignore
10+ /features / export-ignore
11+ /phpspec.ci.yml export-ignore
12+ /phpspec.yml.dist export-ignore
13+ /phpunit.xml.dist export-ignore
14+ /spec / export-ignore
15+ /Tests / export-ignore
Original file line number Diff line number Diff line change 1- build
2- phpunit.xml
3- vendor
4- composer.lock
5- /composer.phar
1+ /behat.yml
2+ /build /
3+ /composer.lock
4+ /phpspec.yml
5+ /phpunit.xml
6+ /vendor /
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ /*
4+ * In order to make it work, fabpot/php-cs-fixer and sllh/php-cs-fixer-styleci-bridge must be installed globally
5+ * with composer.
6+ *
7+ * @link https://github.com/Soullivaneuh/php-cs-fixer-styleci-bridge
8+ * @link https://github.com/FriendsOfPHP/PHP-CS-Fixer
9+ */
10+
11+ use SLLH \StyleCIBridge \ConfigBridge ;
12+
13+ return ConfigBridge::create ();
Original file line number Diff line number Diff line change 1+ filter :
2+ excluded_paths : [vendor/*, Tests/*]
3+ checks :
4+ php :
5+ code_rating : true
6+ duplication : true
7+ tools :
8+ external_code_coverage :
9+ timeout : 1200 # Timeout in seconds.
Original file line number Diff line number Diff line change 1+ preset : symfony
2+
3+ finder :
4+ exclude :
5+ - " Resources"
6+ - " vendor"
7+
8+ enabled :
9+ - short_array_syntax
10+
11+ disabled :
12+ - phpdoc_annotation_without_dot # This is still buggy: https://github.com/symfony/symfony/pull/19198
Original file line number Diff line number Diff line change 11# PSR-6 Cache adapter Bundle
2- [ ![ Latest Stable Version] ( https://poser.pugx.org/cache/adapter-bundle/v/stable )] ( https://packagist.org/packages/cache/adapter-bundle ) [ ![ codecov.io] ( https://codecov.io/github/php-cache/adapter-bundle/coverage.svg?branch=master )] ( https://codecov.io/github/php-cache/adapter-bundle?branch=master ) [ ![ Build Status] ( https://travis-ci.org/php-cache/adapter-bundle.svg?branch=master )] ( https://travis-ci.org/php-cache/adapter-bundle ) [ ![ Total Downloads] ( https://poser.pugx.org/cache/adapter-bundle/downloads )] ( https://packagist.org/packages/cache/adapter-bundle ) [ ![ Monthly Downloads] ( https://poser.pugx.org/cache/adapter-bundle/d/monthly.png )] ( https://packagist.org/packages/cache/adapter-bundle ) [ ![ SensioLabsInsight] ( https://insight.sensiolabs.com/projects/21963379-2b15-4cc4-bdf6-0f98aa292f8a/mini.png )] ( https://insight.sensiolabs.com/projects/21963379-2b15-4cc4-bdf6-0f98aa292f8a ) [ ![ Software License] ( https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square )] ( LICENSE )
2+ [ ![ Latest Stable Version] ( https://poser.pugx.org/cache/adapter-bundle/v/stable )] ( https://packagist.org/packages/cache/adapter-bundle )
3+ [ ![ codecov.io] ( https://codecov.io/github/php-cache/adapter-bundle/coverage.svg?branch=master )] ( https://codecov.io/github/php-cache/adapter-bundle?branch=master ) [ ![ Build Status] ( https://travis-ci.org/php-cache/adapter-bundle.svg?branch=master )] ( https://travis-ci.org/php-cache/adapter-bundle )
4+ [ ![ Total Downloads] ( https://poser.pugx.org/cache/adapter-bundle/downloads )] ( https://packagist.org/packages/cache/adapter-bundle )
5+ [ ![ Monthly Downloads] ( https://poser.pugx.org/cache/adapter-bundle/d/monthly.png )] ( https://packagist.org/packages/cache/adapter-bundle )
6+ [ ![ Quality Score] ( https://img.shields.io/scrutinizer/g/cache/adapter-bundle.svg?style=flat-square )] ( https://scrutinizer-ci.com/g/cache/adapter-bundle )
7+ [ ![ SensioLabsInsight] ( https://insight.sensiolabs.com/projects/21963379-2b15-4cc4-bdf6-0f98aa292f8a/mini.png )] ( https://insight.sensiolabs.com/projects/21963379-2b15-4cc4-bdf6-0f98aa292f8a )
8+ [ ![ Software License] ( https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square )] ( LICENSE )
39
410
511This bundle helps you configurate and register PSR-6 cache services. It is a part of the PHP Cache organisation. To read about
You can’t perform that action at this time.
0 commit comments