You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you would like to contribute, here are some notes and guidelines:
4
+
5
+
- All new development happens on feature/fix branches referenced with the GitHub issue number, and are then merged to the develop branch; so the develop branch is always the most up-to-date, working code
6
+
- The master branch only contains tagged releases
7
+
- If you are going to be submitting a pull request, please fork from develop, and submit your pull request back as a fix/feature branch referencing the GitHub issue number
8
+
- Code changes must be validated by PHP-CS-Fixer and PHP_CodeSniffer (via `./vendor/bin/php-cs-fixer fix --verbose && ./vendor/bin/phpcs samples/ src/ tests/ --standard=PSR2 -n`)
9
+
-[Helpful article about forking](https://help.github.com/articles/fork-a-repo/"Forking a GitHub repository")
10
+
-[Helpful article about pull requests](https://help.github.com/articles/using-pull-requests/"Pull Requests")
Copy file name to clipboardExpand all lines: README.md
+4-31Lines changed: 4 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,41 +16,14 @@ Develop:
16
16
17
17
PhpSpreadsheet is a library written in pure PHP and providing a set of classes that allow you to read from and to write to different spreadsheet file formats, like Excel and LibreOffice Calc.
|Office Open XML (.xlsx) Excel 2007 and above| ✓ | ✓ |
25
-
|BIFF 8 (.xls) Excel 97 and above | ✓ | ✓ |
26
-
|BIFF 5 (.xls) Excel 95 | ✓ ||
27
-
|SpreadsheetML (.xml) Excel 2003 | ✓ ||
28
-
|Gnumeric | ✓ ||
29
-
|HTML | ✓ | ✓ |
30
-
|SYLK | ✓ ||
31
-
|CSV | ✓ | ✓ |
32
-
|PDF (using either the tcPDF, DomPDF or mPDF libraries, which need to be installed separately)|| ✓ |
21
+
Read more about it, including install instructions, in the official documentation, either at the online version:
33
22
34
-
## Requirements
23
+
https://phpspreadsheet.readthedocs.io
35
24
36
-
* PHP version 5.6 or higher
37
-
* PHP extension php_zip enabled
38
-
* PHP extension php_xml enabled
39
-
* PHP extension php_gd2 enabled (optional, but required for exact column width autocalculation)
25
+
Or directly in this repository in the folder `docs/`.
40
26
41
-
## PHP version support
42
-
43
-
Support for PHP versions will only be maintained for a period of six months beyond the end-of-life of that PHP version
44
-
45
-
## Want to contribute?
46
-
47
-
If you would like to contribute, here are some notes and guidelines:
48
-
- All new development happens on feature/fix branches referenced with the GitHub issue number, and are then merged to the develop branch; so the develop branch is always the most up-to-date, working code
49
-
- The master branch only contains tagged releases
50
-
- If you are going to be submitting a pull request, please fork from develop, and submit your pull request back as a fix/feature branch referencing the GitHub issue number
51
-
- Code changes must be validated by PHP-CS-Fixer and PHP_CodeSniffer (via `./vendor/bin/php-cs-fixer fix --verbose && ./vendor/bin/phpcs samples/ src/ tests/ --standard=PSR2 -n`)
52
-
-[Helpful article about forking](https://help.github.com/articles/fork-a-repo/"Forking a GitHub repository")
53
-
-[Helpful article about pull requests](https://help.github.com/articles/using-pull-requests/"Pull Requests")
0 commit comments