Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# PHP ONIX 3.0 Parser

This fork requires PHP 8.2+ and is updated to use Symfony 7.3+

This package is a simple PHP library for reading ONIX 3.0 files in the general formats Short and Ref. Helper functions in the individual units make it easy to read out the details that you need from the data record. Text elements in different formats as well as the different ONIX date formats are automatically parsed and can therefore be used easily.

__This package is currently under development. Although most fields should be detected and parsed by the library, some fields still need more work.__

## Installation
PHP 7.1 or greater is required.
PHP 8.2 or greater is required.

Installation is recommended to be done via composer by running:
```
Expand Down
14 changes: 10 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,22 @@
{
"name": "Chris Ribal",
"email": "c.ribal@ribal-webentwicklung.de"
},
{
"name": "Alex Schwarz",
"email": "alexschwarz@live.de"
}
],
"require": {
"symfony/serializer": "^5.4",
"symfony/property-info": "^5.4",
"symfony/property-access": "^5.4"
"symfony/serializer": "^7.3",
"symfony/property-info": "^7.3",
"symfony/property-access": "^7.3",
"ext-dom": "*",
"php": ">=8.2"
},
"autoload": {
"psr-4": {
"Ribal\\Onix\\": "src/"
}
}
}
}
Loading