Download the PHP package knackline/excel-to-x without Composer
On this page you can find all versions of the php package knackline/excel-to-x. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download knackline/excel-to-x
More information about knackline/excel-to-x
Files in knackline/excel-to-x
Package excel-to-x
Short Description Laravel Package that converts excel to JSON/collection
License MIT
Informations about the package excel-to-x
Laravel Excel to JSON / Collection / Array
This Laravel package provides utilities for converting Excel files to JSON format, Laravel Collections, or PHP Arrays. It also supports reading data from multiple sheets within an Excel file.
Installation
You can install the package via Composer:
Usage
JSON Conversion
To convert an Excel file to JSON format, use the json
method of the ExcelTo
class:
This will return a JSON-encoded string representing the Excel data. If the Excel file contains multiple sheets, the data will be organized by sheet names.
Collection Conversion
To convert an Excel file to a Laravel Collection, use the collection
method of the ExcelTo
class:
This will return a Laravel Collection containing the Excel data. When multiple sheets are present, each sheet's data will be a collection keyed by the sheet name.
Array Conversion
To convert an Excel file to a PHP Array, use the array
method of the ExcelTo
class:
This will return a PHP array containing the Excel data. Similar to JSON and Collection, multiple sheets will be keyed by their names.
Example
Requirements
- PHP >= 8.2
- Laravel >= 8.x
- PhpSpreadsheet >= 1.20
Author
- RAJKUMAR SAMRA - Github)
Contributing
Contributions are welcome! Feel free to submit pull requests or open an issue if you find any bugs or have any suggestions for improvements.
License
This package is open-source software licensed under the MIT license.
Key Updates:
-
Support for Multiple Sheets:
- Described how the package handles multiple sheets, with data organized by sheet names.
-
Array Conversion:
- Added a new section for array conversion, including an example of how to use the new
array
method.
- Added a new section for array conversion, including an example of how to use the new
- Clarified Output Format:
- Explained the structure of the data returned by each method, emphasizing the handling of single vs. multiple sheets.
Feel free to modify any section further if you have additional details or preferences for the README content.