singlequote/laravel-xml-parser

2.0.0 2021-07-13 14:49 UTC

This package is auto-updated.

Last update: 2024-03-13 20:16:44 UTC


README

Latest Version on Packagist Total Downloads

This package is optimized XML handling package for Laravel aiming to be easy and fast.

The main features are

  • Fast XML importing with the ability to cast to classes and models
  • XML exporting from (nested / value only ) arrays
  • Exporting Laravel views to XML

Installation

You can install the package via composer:

composer require singlequote/laravel-xml-parser

Usage

This packages comes with a facade which you can use like this \XML:: or use it in your class like use XML;

In depth guides can be found here:

$notes = XML::import("notes.xml")
    ->cast('note')->to(NoteModel::class)
    ->expect('note')->as('array')
    ->optimize('camelcase')
    ->get();

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email info@quotec.nl instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.