maymeow / excel-importer
A php package to transform XLSX filse to models.
Installs: 1 231
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 3
Type:php-pacakge
Requires
- php: 8.*
- meow/hydrator: ^1.0
- phpoffice/phpspreadsheet: ^1.13
- symfony/console: ^5.1
Requires (Dev)
- phpstan/phpstan: ^1.1
- phpunit/phpunit: ^9.5
- squizlabs/php_codesniffer: ^3.6
- dev-master
- v1.2.1
- v1.2.0
- v1.1.1
- v1.1.0
- v1.0
- dev-dev/allow-nullable-message
- dev-dev/validators-patch-1
- dev-dev/add-error-bag
- dev-dev/add-validations
- dev-dev/update-dependencies
- dev-dependabot/composer/phpoffice/phpspreadsheet-1.29.4
- dev-dev/fix-missing-columns-error
- dev-use-hydrator
- dev-implement-code-quality-scanning
- dev-rules-from-attributes
- dev-update-model-writer
- dev-add-locator
- dev-add-testing
- dev-update-dependencies-211110
This package is auto-updated.
Last update: 2025-03-27 10:49:12 UTC
README
Simple and extendable library for loading data from Excel files (.xlsx) into objects.
This Library using phpoffice/phpspreadsheet
to read from XLSX files. Look at their Github
Read files - commandline with example data (Deprecated)
From command line with example data
php application.php app:read-file -f ./path/to/file.xlsx
Via Source Code
Create new model which extending MayMeow\ExcelImporter\Models\BaseModel
. To map column from excel to property use
\MayMeow\ExcelImporter\Attributes\Column
attribute.
<?php use MayMeow\ExcelImporter\Models\BaseModel; class ExampleModel extends BaseModel { #[\MayMeow\ExcelImporter\Attributes\Column('A')] protected string $property; public function getProperty() { return $this->property; } }
read from file following example is reading from active sheet
// ... use MayMeow\ExcelImporter\Models\ExampleModel; use MayMeow\ExcelImporter\Writers\ModelWriter; use PhpOffice\PhpSpreadsheet\Reader\Xlsx; // ... public function testImportingFile() { $xlsxReader = new Xlsx(); $spreadsheet = $xlsxReader->load((new TestingDataLocator())->locateExcelFile()); $writer = new ModelWriter(); /** @var array<TestingModel> $modelArray */ $modelArray = $writer->write(TestingModel::class, $spreadsheet); } // ...
Validators 🎉 (from v1.2.0)
I added option to validate input data before you store them to the target. It uses new class from namespace MayMeow\ExcelImporter\Validators;
. Validator using attributes (rules) to validate fi data in field (property are valid). In current state (v1.2.0) i shipping only NotEmpty
rule for validation.
For example
class TestingModel extends BaseModel { #[Column('A')] #[NotEmpty] protected string $colA; // ... }
Then you can use validator to validate the data as follows:
$baseValidator = new BaseValidator(failFast: true, throwException: false); // fast fail with fail on first error if set tot true otherwise will continue until end and return ValidatorBag // throwExcpetion will throw ValidationException if set to true // you can validate arrory of models $e = $baseValidator->validateMany($this->modelArray, rule: NotEmpty::class); // or just single model $baseValidator->validate($this->modelArray[2], rule: NotEmpty::class); //then you can get error messages as follows if ($e->hasErrors()) { // return any first error for any field or any row (for both validate and validateMany) $e->getFirstError(); // return any first error on index 2 (use this for indexed - for validateMany) $e->getFirstError(index: 2); // return first error for field colA in any index (for both validate and validateMany) $e->getFirstError(field: 'colA'); // return first error for field colA on index 2 (for validateMany) $e->getFirstError(field: 'colA', index: 2); }
Error bag
This is how validation working. It uses ValidatorErrorBag
to store errors. If you want implement your own validator but use error bag you can do this as follows:
$errors = new ValidatorErrorBag(); // Errors for multiple models (indexed) $errors->addError('name', 'Name is required', 0); $errors->addError('email', 'Invalid email format', 1); $errors->addError('password', 'Password too short', 2); // Non-indexed errors (single model) $errors->addError('age', 'Age must be a number'); // 🔥 Get first error globally echo $errors->getFirstError(); // Output: "Name is required" // 🔥 Get first error for a specific model (index 1) echo $errors->getFirstError(null, 1); // Output: "Invalid email format" // 🔥 Get first error for a specific field (globally) echo $errors->getFirstError('password'); // Output: "Password too short" // 🔥 Get first error for a specific field across all indexed models echo $errors->getFirstError('email'); // Output: "Invalid email format" // 🔥 Get first error from any row for a **numeric field key** echo $errors->getFirstError(0); // Output: "Name is required" (first error from index 0)
Custom rules (attributes)
If you want to create new rule, you can do this by creating new attribute. That new attribute must implement MayMeow\ExcelImporter\Validators\ValidatorAttributeInterface;
to make it work.
Validator only look for property applied Attributes.
Files
For getting path to files you can create Locator by implementing MayMeow\ExcelImporter\Tools\FileLocatorInterface
which
is not required by XLS reader but recommended.
License MIT