Merge pull request #88 from Slamdunk/feature/travis
Add Travis to the project
This commit is contained in:
commit
ddbce8e139
|
@ -0,0 +1,13 @@
|
||||||
|
language: php
|
||||||
|
|
||||||
|
php:
|
||||||
|
- 5.2
|
||||||
|
- 5.3.3
|
||||||
|
- 5.3
|
||||||
|
- 5.4
|
||||||
|
|
||||||
|
script:
|
||||||
|
- phpunit -c ./unitTests/
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
email: false
|
|
@ -1,6 +1,8 @@
|
||||||
# PHPExcel - OpenXML - Read, Write and Create spreadsheet documents in PHP - Spreadsheet engine
|
# PHPExcel - OpenXML - Read, Write and Create spreadsheet documents in PHP - Spreadsheet engine
|
||||||
PHPExcel is a library written in pure PHP and providing a set of classes that allow you to write to and read from different spreadsheet file formats, like Excel (BIFF) .xls, Excel 2007 (OfficeOpenXML) .xlsx, CSV, Libre/OpenOffice Calc .ods, Gnumeric, PDF, HTML, ... This project is built around Microsoft's OpenXML standard and PHP.
|
PHPExcel is a library written in pure PHP and providing a set of classes that allow you to write to and read from different spreadsheet file formats, like Excel (BIFF) .xls, Excel 2007 (OfficeOpenXML) .xlsx, CSV, Libre/OpenOffice Calc .ods, Gnumeric, PDF, HTML, ... This project is built around Microsoft's OpenXML standard and PHP.
|
||||||
|
|
||||||
|
Master: [![Build Status](https://secure.travis-ci.org/PHPOffice/PHPExcel.png?branch=master)](http://travis-ci.org/PHPOffice/PHPExcel)
|
||||||
|
Develop: [![Build Status](https://secure.travis-ci.org/PHPOffice/PHPExcel.png?branch=develop)](http://travis-ci.org/PHPOffice/PHPExcel)
|
||||||
|
|
||||||
## File Formats supported
|
## File Formats supported
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
* @author Mark Baker
|
* @author Mark Baker
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
chdir(dirname(__FILE__));
|
||||||
|
|
||||||
// PHP 5.3 Compat
|
// PHP 5.3 Compat
|
||||||
date_default_timezone_set('Europe/London');
|
date_default_timezone_set('Europe/London');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue