Skip to content

Commit df2e30b

Browse files
committedJan 19, 2017
2017-01-19:17:05:03 automated build changes.
0 parents  commit df2e30b

File tree

77 files changed

+17364
-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.

77 files changed

+17364
-0
lines changed
 

‎.php_cs

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
return Symfony\CS\Config::create()
4+
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
5+
->setUsingCache(true)
6+
->fixers(
7+
[
8+
'ordered_use',
9+
'phpdoc_order',
10+
'short_array_syntax',
11+
'strict',
12+
'strict_param'
13+
]
14+
)
15+
->finder(
16+
Symfony\CS\Finder\DefaultFinder::create()
17+
->in(__DIR__)
18+
);

‎.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: php
2+
sudo: false
3+
php:
4+
- 5.6
5+
- 7.0
6+
- 7.1
7+
before_install: "composer install"
8+
script: "vendor/bin/phpunit"

0 commit comments

Comments
 (0)
Please sign in to comment.