Download the PHP package mtownsend/collection-xml without Composer

On this page you can find all versions of the php package mtownsend/collection-xml. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package collection-xml

The missing XML support for Laravel's Collection class.

This package is designed to work with the Laravel framework.

Installation

Install via composer:

Registering the service provider

For Laravel 5.4 and lower, add the following line to your config/app.php:

For Laravel 5.5 and greater, the package will auto register the provider for you.

Using Lumen

To register the service provider, add the following line to app/bootstrap/app.php:

Quick start

Collection to xml

Convert data inside a Laravel Collection into valid XML:

Collection to soap xml

Heads up, this method is the most temperamental part of this package. Please thoroughly check your SOAP endpoint and requirements for best usage.

Please note: the SoapFactory class will ping the $fullUrl to see if it is valid as it builds the SOAP xml. It will not trigger an api interaction, but you will experience an exception if your url is invalid.

Array to xml

Convert an array into xml without using a collection:

Helpers, methods, and arguments

Helper

array_to_xml($array, $root = '')

The $root argument allows you to customize the root xml element. Default is <root>.

Collection method

->toXml($root)

See array_to_xml() above.

Collection method

->toSoapXml($root = '', $soapRoot = '', $fullUrl, array $options = [])

The $root argument allows you to customize the inner root xml element. Default is <root>.

$soapRoot is the outer xml root element. Default is xmlBody.

$fullUrl will be the fully qualified SOAP endpoint e.g. https://yourwebserver/service.asmx?wsdl. Please note: the SoapFactory class will ping the $fullUrl to see if it is valid as it builds the SOAP xml. It will not trigger an api interaction, but you will experience an exception if your url is invalid.

$options will be an array of valid options for PHP's SoapClient class. By default ['trace' => 1] is set.

Purpose

Laravel has always favored json over xml with its api structure. Inevitably, developers will be required to interact with files or apis that require xml, and they are often left to figure it out for themselves.

This package aims to bring painless xml support to Laravel's Collection class, and bring a few useful helpers along.

Other packages you may be interested in

Credits

Testing

You can run the tests with:

License

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


All versions of collection-xml with dependencies

PHP Build Version
Package Version
Requires php Version ~7.0|~8.0|~8.1
illuminate/support Version ~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
spatie/array-to-xml Version ^3.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mtownsend/collection-xml contains the following files

Loading the files please wait ....