Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/magicsunday/xmlmapper
Map PHP to XML
https://github.com/magicsunday/xmlmapper
Last synced: 24 days ago
JSON representation
Map PHP to XML
- Host: GitHub
- URL: https://github.com/magicsunday/xmlmapper
- Owner: magicsunday
- License: mit
- Created: 2024-01-25T07:13:29.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-03-03T14:13:58.000Z (10 months ago)
- Last Synced: 2024-03-04T14:41:53.521Z (10 months ago)
- Language: PHP
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[![Latest version](https://img.shields.io/github/v/release/magicsunday/xmlmapper?sort=semver)](https://github.com/magicsunday/xmlmapper/releases/latest)
[![License](https://img.shields.io/github/license/magicsunday/xmlmapper)](https://github.com/magicsunday/xmlmapper/blob/main/LICENSE)
[![CI](https://github.com/magicsunday/xmlmapper/actions/workflows/ci.yml/badge.svg)](https://github.com/magicsunday/xmlmapper/actions/workflows/ci.yml)# XmlMapper
This module provides a mapper to map PHP classes to XML utilizing Symfony's property info and access packages.## Installation
### Using Composer
To install using [composer](https://getcomposer.org/), just run the following command from the command line.```bash
composer require magicsunday/xmlmapper
```To remove the module run:
```bash
composer remove magicsunday/xmlmapper
```## Development
### Testing
```bash
composer update
composer ci:cgl
composer ci:test
composer ci:test:php:phplint
composer ci:test:php:phpstan
composer ci:test:php:rector
composer ci:test:php:unit
```