orchestra / parser
XML Document Parser for Laravel and PHP
Fund package maintenance!
Liberapay
paypal.me/crynobone
Requires
- php: ^8.2
- illuminate/container: ^11.0
- laravie/parser: ^2.4
Requires (Dev)
- laravel/pint: ^1.6
- orchestra/testbench: ^9.0.2
- phpstan/phpstan: ^1.10.15
- phpunit/phpunit: ^10.5
This package is auto-updated.
Last update: 2024-11-05 13:23:15 UTC
README
Parser Component is a framework agnostic package that provide a simple way to parse XML to array without having to write a complex logic.
Imagine if you can parse
<api> <user followers="5"> <id>1</id> <email>crynobone@gmail.com</email> </user> </api>
to
$user = [ 'id' => '1', 'email' => 'crynobone@gmail.com', 'followers' => '5' ];
by just writing this:
use Orchestra\Parser\Xml\Facade as XmlParser; $xml = XmlParser::load('path/to/above.xml'); $user = $xml->parse([ 'id' => ['uses' => 'user.id'], 'email' => ['uses' => 'user.email'], 'followers' => ['uses' => 'user::followers'], ]);
Version Compatibility
Installation
To install through composer, run the following command from terminal:
composer require "orchestra/parser"
Configuration
Next add the service provider in config/app.php
.
'providers' => [ // ... Orchestra\Parser\XmlServiceProvider::class, ],
Aliases
You might want to add Orchestra\Parser\Xml\Facade
to class aliases in config/app.php
:
'aliases' => [ // ... 'XmlParser' => Orchestra\Parser\Xml\Facade::class, ],