Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/christophemaymard/php-xml-schema
Provides support to parse and create an in-memory representation of a XML Schema document.
https://github.com/christophemaymard/php-xml-schema
xml-schema
Last synced: about 2 months ago
JSON representation
Provides support to parse and create an in-memory representation of a XML Schema document.
- Host: GitHub
- URL: https://github.com/christophemaymard/php-xml-schema
- Owner: christophemaymard
- License: mit
- Created: 2018-02-20T04:23:19.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-04-19T12:00:47.000Z (almost 5 years ago)
- Last Synced: 2024-05-13T21:05:49.885Z (9 months ago)
- Topics: xml-schema
- Language: PHP
- Homepage:
- Size: 3.97 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PhpXmlSchema
[![Latest Release](https://img.shields.io/packagist/v/cmaymard/php-xml-schema?label=Release&style=plastic)](https://packagist.org/packages/cmaymard/php-xml-schema)
[![PHP Version](https://img.shields.io/packagist/php-v/cmaymard/php-xml-schema?color=informational&label=PHP&style=plastic)](https://www.php.net/)
[![PHP Extensions](https://img.shields.io/static/v1?label=PHP%20ext&message=GMP&color=informational&style=plastic)](https://www.php.net/)
[![License](https://img.shields.io/github/license/christophemaymard/php-xml-schema?label=License&style=plastic)](LICENSE)Provides support to parse and create an in-memory representation of a XML Schema document.
## Installation
```
composer require cmaymard/php-xml-schema
```## Usage
### Parse a XML Schema 1.0 document
```php
parse($src);
```See the [documentation](/doc/dom/Parser.md).