Skip to content

Commit

Permalink
Merge pull request #1 from visol/task/support-php8
Browse files Browse the repository at this point in the history
[TASK] Update README, support PHP 8+
  • Loading branch information
lorenzulrich authored Apr 10, 2024
2 parents 1533b22 + 74d07c6 commit 7f18acc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
14 changes: 3 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
IDX Reader
==========

[![Build Status](https://travis-ci.org/visol/idx-reader.svg?branch=1.1.0)](https://travis-ci.org/visol/idx-reader)

Library to read and parse IDX data. Internet Data Exchange (IDX, also known as Information Data Exchange) is a standard to describe properties such as houses, appartment, etc... commonly used in the real estate industry.

Latest release: [dev-master](https://packagist.org/packages/visol/idx-reader#dev-master)

PHP >= 5.5.9
Library to read and parse IDX data. Internet Data Exchange (IDX) is a standard to describe properties such as houses, appartment, etc... commonly used in the real estate industry.

Usage
-----
Expand All @@ -16,12 +10,10 @@ Usage
$reader = new Visol\IdxReader\IdxReader();
$reader->load($contents);

We can also load a data-set from a file:
We can also load a dataset from a file:

$reader = new Visol\IdxReader\IdxReader()
$reader->loadFromFile('sample.idx')
->getRecords();

$reader->loadFromFile('sample.idx');

We can retrieve all records or count them:

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
],
"require": {
"php": "^5.5.9|^7.0"
"php": "^5.5.9 || ^7.0 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^5.5"
Expand Down

0 comments on commit 7f18acc

Please sign in to comment.