2
0
forked from Wavyzz/dolibarr

Install mobiledetect from composer

This commit is contained in:
Raphaël Doursenaud
2015-08-06 16:43:30 +02:00
parent 7d934db183
commit 0eb0f52b6d
27 changed files with 4908 additions and 77 deletions

View File

@@ -0,0 +1,24 @@
<?php
use Symfony\CS\FixerInterface;
$finder = Symfony\CS\Finder\DefaultFinder::create()
->notName('LICENSE')
->notName('README.md')
->notName('.php_cs')
->notName('composer.*')
->notName('phpunit.xml*')
->notName('*.phar')
->exclude('vendor')
->exclude('examples')
->exclude('Symfony/CS/Tests/Fixer')
->notName('ElseifFixer.php')
->exclude('data')
->in(__DIR__)
;
return Symfony\CS\Config\Config::create()
->finder($finder)
;