kore / ctx-parser
Parser for CTX files
Installs: 100
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 1
Open Issues: 1
pkg:composer/kore/ctx-parser
Requires
- php: >=5.4.0
README
Parser for CTX files, which are, for example, returned by aqbanking.
Usage:
$parser = new CTXParser\Parser(); $parser->parse("my.ctx");
The parser will return a nested structure of value objects with a full representation of the CTX file.
I could not find a standard definition for theses files, so I worked with example files and extended the parser to be able to parse them. If you find un-parsable CTX files please report issues with attached examples.
You may also just add them unter test/CTXParser/_fixtures/
and extend the
parser accordingly.