https://github.com/4d47/php-archieml
PHP parser for the Archie Markup Language (ArchieML)
https://github.com/4d47/php-archieml
archieml php
Last synced: 14 days ago
JSON representation
PHP parser for the Archie Markup Language (ArchieML)
- Host: GitHub
- URL: https://github.com/4d47/php-archieml
- Owner: 4d47
- Created: 2015-04-12T01:14:09.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-03-27T20:36:30.000Z (about 1 year ago)
- Last Synced: 2025-03-29T13:06:20.991Z (about 1 month ago)
- Topics: archieml, php
- Language: PHP
- Homepage:
- Size: 19.5 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# ArchieML
Parse Archie Markup Language (ArchieML) documents into PHP arrays.
Read about the ArchieML specification at [archieml.org](http://archieml.org).
This project is currently mostly a translation of [ArchieML.js v0.4.2](https://github.com/newsdev/archieml-js/blob/e0fab24/archieml.js)
## Install
`composer require 4d47/archieml`
## Usage
```php
ArchieML::load("key: value"); // [ 'key' => 'value' ]
```## Test
```sh
git submodule init
git submodule update
composer install
composer test
```