2017 © Pedro Peláez
 

library parser

XML Document Parser for PHP

image

laravie/parser

XML Document Parser for PHP

  • Saturday, July 28, 2018
  • by crynobone
  • Repository
  • 3 Watchers
  • 66 Stars
  • 157,730 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 10 Forks
  • 1 Open issues
  • 11 Versions
  • 13 % Grown

The README.md

XML Document Parser PHP

Parser Component is a framework agnostic package that provide a simple way to parse XML to array without having to write a complex logic., (*1)

tests Latest Stable Version Total Downloads Latest Unstable Version License Coverage Status, (*2)

Imagine if you can parse, (*3)

<api>
    <user followers="5">
        <id>1</id>
        <email>crynobone@gmail.com</email>
    </user>
</api>

to, (*4)

<?php

$user = [
    'id' => '1',
    'email' => 'crynobone@gmail.com',
    'followers' => '5'
];

by just writing this:, (*5)

<?php

use Laravie\Parser\Xml\Reader;
use Laravie\Parser\Xml\Document;

$xml = (new Reader(new Document()))->load('path/to/above.xml');

$user = $xml->parse([
    'id' => ['uses' => 'user.id'],
    'email' => ['uses' => 'user.email'],
    'followers' => ['uses' => 'user::followers'],
]);

Installation

To install through composer, simply put the following in your composer.json file:, (*6)

{
    "require": {
        "laravie/parser": "^2.0"
    }
}

And then run composer install from the terminal., (*7)

Quick Installation

Above installation can also be simplify by using the following command:, (*8)

composer require "laravie/parser=^2.0"

The Versions

28/07 2018

1.3.x-dev

1.3.9999999.9999999-dev

XML Document Parser for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

parser xml

30/04 2018

dev-master

9999999-dev

XML Document Parser for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

parser xml

30/04 2018

v1.3.0

1.3.0.0

XML Document Parser for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

parser xml

16/04 2018

1.2.x-dev

1.2.9999999.9999999-dev

XML Document Parser for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

parser xml

25/12 2017

v1.2.2

1.2.2.0

XML Document Parser for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

parser xml

16/12 2017

v1.2.1

1.2.1.0

XML Document Parser for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

parser xml

26/07 2017

v1.2.0

1.2.0.0

XML Document Parser for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

parser xml

26/07 2017

1.1.x-dev

1.1.9999999.9999999-dev

XML Document Parser for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

parser xml

02/03 2016

v1.1.1

1.1.1.0

XML Document Parser for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

parser xml

11/01 2016

v1.1.0

1.1.0.0

XML Document Parser for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

parser xml

18/12 2015

v1.0.0

1.0.0.0

XML Document Parser for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

parser xml