An open API service indexing awesome lists of open source software.

https://github.com/stilliard/blmreader

PHP BLM file format reader / parser (for use with rightmove files)
https://github.com/stilliard/blmreader

blm format-reader php rightmove-files

Last synced: about 1 year ago
JSON representation

PHP BLM file format reader / parser (for use with rightmove files)

Awesome Lists containing this project

README

          

# BLM file format reader

[![Build Status](https://travis-ci.org/stilliard/blmreader.svg)](https://travis-ci.org/stilliard/blmreader)

This php composer package provides a simple way to read BLM files for use with rightmove files

## Install
```bash
composer require stilliard/blmreader 1.0.1
```

## Example usage
```php
$blm = new \BLM\Reader(dirname(__FILE__) . '/test.blm');
var_dump($blm->toArray());
```