Skip to content

Commit 3eef5c7

Browse files
committed
Merge branch 'release/0.0.1'
2 parents 33b9e3f + 628a532 commit 3eef5c7

24 files changed

+2428
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
vendor/
2+
composer.lock
3+
phpunit.xml

.php_cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
$finder = Symfony\CS\Finder\DefaultFinder::create()
4+
->exclude('vendor')
5+
->exclude('Tests/resources')
6+
->in(__DIR__);
7+
8+
return Symfony\CS\Config\Config::create()
9+
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
10+
->finder($finder);

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
language: php
2+
3+
sudo: false
4+
5+
php:
6+
- 5.3
7+
- 5.4
8+
- 5.5
9+
- 5.6
10+
11+
before_install:
12+
- composer self-update
13+
14+
install:
15+
- composer install
16+
17+
script:
18+
- phpunit --coverage-text --coverage-clover=coverage.clover
19+
20+
after_script:
21+
- wget https://scrutinizer-ci.com/ocular.phar
22+
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover

0 commit comments

Comments
 (0)