Skip to content

Commit 493977d

Browse files
committed
Travis & Coveralls configuration
1 parent 8f6ae62 commit 493977d

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: php
2+
3+
php:
4+
- 5.4
5+
- 5.5
6+
7+
before_script:
8+
- wget http://getcomposer.org/composer.phar
9+
- php composer.phar install --dev --no-interaction --prefer-source
10+
11+
script:
12+
- mkdir -p build/logs
13+
- phpunit --coverage-clover build/logs/clover.xml
14+
15+
after_script:
16+
- php vendor/bin/coveralls -v

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ It is targeted to support the following formats:
88
- PDF (to be implemented)
99
- XML (to be implemented)
1010

11-
It provides an object model for different formats (spreadsheet, document, XML…) and a language based on YAML to map your data (arrays, objects, …) onto the model.
11+
It provides an object model for different formats (spreadsheet, document, XML…) and a language based on YAML and Twig to map your data (arrays, objects, …) onto the model.
1212

1313
## Spreadsheet
1414

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,8 @@
1010
"symfony/property-access": "2.*",
1111
"phpoffice/phpexcel": "1.7.*",
1212
"twig/twig": "1.*"
13-
}
13+
},
14+
"require-dev": {
15+
"satooshi/php-coveralls": "dev-master"
16+
}
1417
}

0 commit comments

Comments
 (0)