Merge 7ed099df787c3ad511ed9942296143d4a751ae56 into 503ba97e9d5e227bf43e21dfd9723b6a76c2ab24
This commit is contained in:
commit
9cb2e4a557
13
.travis.yml
13
.travis.yml
@ -7,8 +7,13 @@ php:
|
|||||||
- nightly
|
- nightly
|
||||||
- hhvm
|
- hhvm
|
||||||
|
|
||||||
install:
|
|
||||||
- composer self-update
|
|
||||||
- composer install --prefer-source
|
|
||||||
|
|
||||||
script: phpunit
|
before_script:
|
||||||
|
- composer self-update
|
||||||
|
- composer install --dev --prefer-source
|
||||||
|
- mkdir -p build/logs
|
||||||
|
|
||||||
|
script: phpunit --coverage-clover build/logs/clover.xml
|
||||||
|
|
||||||
|
after_script:
|
||||||
|
- php vendor/bin/coveralls -v
|
@ -3,7 +3,9 @@
|
|||||||
[](https://packagist.org/packages/box/spout)
|
[](https://packagist.org/packages/box/spout)
|
||||||
[](http://opensource.box.com/badges)
|
[](http://opensource.box.com/badges)
|
||||||
[](http://travis-ci.org/box/spout)
|
[](http://travis-ci.org/box/spout)
|
||||||
[](https://packagist.org/packages/box/spout) [](https://packagist.org/packages/box/spout)
|
[](https://coveralls.io/r/box/spout)
|
||||||
|
[](https://packagist.org/packages/box/spout)
|
||||||
|
[](https://packagist.org/packages/box/spout)
|
||||||
|
|
||||||
Spout is a PHP library to read and write CSV and XLSX files, in a fast and scalable way.
|
Spout is a PHP library to read and write CSV and XLSX files, in a fast and scalable way.
|
||||||
Contrary to other file readers or writers, it is capable of processing very large files while keeping the memory usage really low (less than 10MB).
|
Contrary to other file readers or writers, it is capable of processing very large files while keeping the memory usage really low (less than 10MB).
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
"ext-simplexml": "*"
|
"ext-simplexml": "*"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": ">=3.7"
|
"phpunit/phpunit": "^4.7",
|
||||||
|
"satooshi/php-coveralls": "^0.6.1"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
@ -13,15 +13,13 @@
|
|||||||
<directory>tests/</directory>
|
<directory>tests/</directory>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
</testsuites>
|
</testsuites>
|
||||||
|
|
||||||
<logging>
|
|
||||||
<log type="coverage-html" target="tests/coverage/"/>
|
|
||||||
</logging>
|
|
||||||
|
|
||||||
<filter>
|
<filter>
|
||||||
<whitelist>
|
<whitelist>
|
||||||
<directory suffix=".php">src/</directory>
|
<directory suffix=".php">src/</directory>
|
||||||
</whitelist>
|
</whitelist>
|
||||||
|
<blacklist>
|
||||||
|
<directory suffix=".php">vendor/</directory>
|
||||||
|
</blacklist>
|
||||||
</filter>
|
</filter>
|
||||||
|
|
||||||
</phpunit>
|
</phpunit>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user