PHPackages                             markcell/salvaon - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. markcell/salvaon

AbandonedArchivedLibrary[Database &amp; ORM](/categories/database)

markcell/salvaon
================

Package for Laravel based on Eloquent to manage XML files.

v1.0.6(11y ago)58045MITPHPPHP &gt;=5.4.0

Since Sep 27Pushed 7mo ago3 watchersCompare

[ Source](https://github.com/markcell/salvaon)[ Packagist](https://packagist.org/packages/markcell/salvaon)[ RSS](/packages/markcell-salvaon/feed)WikiDiscussions master Synced today

READMEChangelog (7)Dependencies (1)Versions (8)Used By (0)

Salvaon
=======

[](#salvaon)

[![Latest Stable Version](https://camo.githubusercontent.com/8b1b6f0230c1e8cb7035267ce4e944b0bb7cda3ee749a19bd288067cc1f52d13/68747470733a2f2f706f7365722e707567782e6f72672f6d61726b63656c6c2f73616c76616f6e2f762f737461626c652e737667)](https://packagist.org/packages/markcell/salvaon) [![Total Downloads](https://camo.githubusercontent.com/bf8f0fdb4611475f97e6a690f33687cf3e93b4e651871ce99051d4698bdec7b1/68747470733a2f2f706f7365722e707567782e6f72672f6d61726b63656c6c2f73616c76616f6e2f646f776e6c6f6164732e737667)](https://packagist.org/packages/markcell/salvaon) [![Latest Unstable Version](https://camo.githubusercontent.com/c6843e99067826c0a3355ce02b0e5e890152da4aebf08851ab4956ca90382b52/68747470733a2f2f706f7365722e707567782e6f72672f6d61726b63656c6c2f73616c76616f6e2f762f756e737461626c652e737667)](https://packagist.org/packages/markcell/salvaon) [![License](https://camo.githubusercontent.com/6356420205ee3d2fa057c525803c7229c6dcd219ebe31d371315f5fc11bc2a0d/68747470733a2f2f706f7365722e707567782e6f72672f6d61726b63656c6c2f73616c76616f6e2f6c6963656e73652e737667)](https://packagist.org/packages/markcell/salvaon)

Package for Laravel based on Eloquent to manage XML files with SimpleXMLElement and xpath.

Warning

This repository hasn't been actively maintained for quite some time. The code is still here if you find it useful, but no further updates or support will be provided.

Usage
-----

[](#usage)

Install the package through Composer.

```
{
    "require": {
        "laravel/framework": "4.2.*",
        "markcell/salvaon": "dev-master" // or "markcell/salvaon": "1.0.*"
    }
}
```

Edit 'app/config/app.php', and add a new item to the 'aliases' array:

```
'Salvaon' => 'Markcell\Salvaon\Salvaon'
```

Publish configuration file from package:

```
php artisan config:publish markcell/salvaon
```

You may now edit these options at 'app/config/packages/markcell/salvaon/config.php'. Or copy this file to 'app/config' folder with name 'salvaon.php'.

Now, your XML models can simply extend 'Salvaon':

```
