https://github.com/silarhi/caf-parser
A PHP parser for French CAF (Caisse d'Allocations Familiales) files.
https://github.com/silarhi/caf-parser
caf caf-parser la44zz parser php
Last synced: 2 months ago
JSON representation
A PHP parser for French CAF (Caisse d'Allocations Familiales) files.
- Host: GitHub
- URL: https://github.com/silarhi/caf-parser
- Owner: silarhi
- Created: 2022-01-06T16:44:42.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2026-03-28T16:37:12.000Z (3 months ago)
- Last Synced: 2026-03-28T18:29:24.428Z (3 months ago)
- Topics: caf, caf-parser, la44zz, parser, php
- Language: PHP
- Homepage: https://silarhi.fr
- Size: 167 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# caf-parser

[](https://packagist.org/packages/silarhi/caf-parser)
[](https://packagist.org/packages/silarhi/caf-parser)
[](https://packagist.org/packages/silarhi/caf-parser)
A PHP Parser for CAF file
Supports LA44ZZ file
## Installation
The preferred method of installation is via [Composer][]. Run the following command to install the package and add it as
a requirement to your project's
`composer.json`:
```bash
composer require silarhi/caf-parser
```
## How to use
### Parse LA44ZZ
```php
parse('My Content');
foreach($paymentSlip->getLines() as $line) {
assert($line instanceof \Silarhi\Caf\Model\PaymentSlipLine);
}
```
[composer]: http://getcomposer.org/