Skip to content

Commit be4f6ee

Browse files
committedAug 2, 2018
Initial commit.
0 parents  commit be4f6ee

File tree

141 files changed

+12649
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+12649
-0
lines changed
 

‎.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
composer.lock
2+
composer.phar
3+
.idea/
4+
vendor/
5+
bin/

‎.php_cs.dist

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
$finder = PhpCsFixer\Finder::create()
3+
->exclude('tests')
4+
->notPath('src/Symfony/Component/Translation/Tests/fixtures/resources.php')
5+
->in(__DIR__.'/src')
6+
;
7+
8+
return PhpCsFixer\Config::create()
9+
->setRules([
10+
'@PSR2' => true,
11+
'array_syntax' => ['syntax' => 'short'],
12+
])
13+
->setFinder($finder)
14+
;

0 commit comments

Comments
 (0)