PHPackages                             mimographix/qif-library - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. mimographix/qif-library

ActiveLibrary[Parsing &amp; Serialization](/categories/parsing)

mimographix/qif-library
=======================

A simple QIF parsing/writing library.

1.0.0(6y ago)25.0k2[1 issues](https://github.com/MimoGraphix/qif-library/issues)MITPHP

Since Nov 5Pushed 6y ago1 watchersCompare

[ Source](https://github.com/MimoGraphix/qif-library)[ Packagist](https://packagist.org/packages/mimographix/qif-library)[ RSS](/packages/mimographix-qif-library/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (1)Versions (2)Used By (0)

PHP QIF Library
===============

[](#php-qif-library)

A simple QIF parsing/writing library.

Installation
------------

[](#installation)

```
composer require mimographix/qif-library

```

Usage
-----

[](#usage)

### Parser

[](#parser)

```
// Instatiate the QIF Parser
$qifParser = new MimoGraphix\QIF\Parser( $filePath );
$qifParser->parse();

foreach( $qifParser->getTransactions() as $transaction )
{
    // your code
}
```

### Writer

[](#writer)

```
// Instatiate the QIF Writer
$qif = new MimoGraphix\QIF\Writer();

// Create a new transaction
$transaction = new Transaction( Enums\Types::CASH );

$transaction->setDate( new Carbon( '2019-12-31' ) )
	->setDescription( 'INV666: ' )
	->setAmount( 18.99 )
	->setCategory( 'Sales' )
	->addSplit( 'Sales', 18 )
	->addSplit( 'Tax', 0.99 )
	->markAsReconciled();

// Add it to the QIF
$qif->addTransaction( $transaction );

echo $qif;
```

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2433d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/5190700?v=4)[Mário Čechovič](/maintainers/MimoGraphix)[@MimoGraphix](https://github.com/MimoGraphix)

---

Top Contributors

[![MimoGraphix](https://avatars.githubusercontent.com/u/5190700?v=4)](https://github.com/MimoGraphix "MimoGraphix (2 commits)")

---

Tags

parserwriterqif

### Embed Badge

![Health badge](/badges/mimographix-qif-library/health.svg)

```
[![Health](https://phpackages.com/badges/mimographix-qif-library/health.svg)](https://phpackages.com/packages/mimographix-qif-library)
```

###  Alternatives

[nikic/php-parser

A PHP parser written in PHP

17.4k954.1M2.5k](/packages/nikic-php-parser)[doctrine/lexer

PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.

11.2k959.9M160](/packages/doctrine-lexer)[erusev/parsedown

Parser for Markdown.

15.1k156.8M870](/packages/erusev-parsedown)[masterminds/html5

An HTML5 parser and serializer.

1.8k269.7M322](/packages/masterminds-html5)[spatie/laravel-sitemap

Create and generate sitemaps with ease

2.6k16.6M147](/packages/spatie-laravel-sitemap)[matomo/device-detector

The Universal Device Detection library, that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, media players, mobile apps, feed readers, libraries, etc), operating systems, devices, brands and models.

3.5k26.4M183](/packages/matomo-device-detector)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
