PHPackages                             clapp/szamlazzhuclient - 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. [API Development](/categories/api)
4. /
5. clapp/szamlazzhuclient

ActiveLibrary[API Development](/categories/api)

clapp/szamlazzhuclient
======================

Nem hivatalos Számlázz.hu PHP kliens.

v1.0.0-beta3(8y ago)121823[2 issues](https://github.com/clappcom/szamlazzhuclient/issues)proprietaryPHPPHP ^5.5.9 | ~7.0

Since Jun 14Pushed 8y ago5 watchersCompare

[ Source](https://github.com/clappcom/szamlazzhuclient)[ Packagist](https://packagist.org/packages/clapp/szamlazzhuclient)[ RSS](/packages/clapp-szamlazzhuclient/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (8)Versions (4)Used By (0)

Clapp/SzamlazzhuClient [![Build Status](https://camo.githubusercontent.com/e4c9e0f6549ee013806cdc6e7f6a431f9454e2d276664a10403f915d740287ef/68747470733a2f2f7472617669732d63692e6f72672f636c617070636f6d2f737a616d6c617a7a6875636c69656e742e737667)](https://travis-ci.org/clappcom/szamlazzhuclient) [![Coverage](https://camo.githubusercontent.com/aceca91bf3bbd0c9781a9bedb9b7399ef6e6a817e87390ba65c5a58b181df87e/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f636c617070636f6d2f737a616d6c617a7a6875636c69656e742f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/clappcom/szamlazzhuclient)
======================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#clappszamlazzhuclient--)

Nem hivatalos Számlázz.hu PHP kliens. Kísérleti verzió, production-ben nem ajánlott. Használat csak saját felelősségre.

Telepítés
---------

[](#telepítés)

```
composer require clapp/szamlazzhuclient:1.*@beta

```

Egyszerű minta
--------------

[](#egyszerű-minta)

```
$invoice = new Clapp\SzamlazzhuClient\Invoice();

$invoice->customerName = "Foo Bar";
$invoice->customerBillingPostcode = "1234";
$invoice->customerBillingCity = "Budapest";
$invoice->customerBillingAddress = "Foo utca 1.";

$invoice->merchantBankName = "FooBank";
$invoice->merchantBankAccountNumber = "12345678-12345678-12345678";

$invoice->items = [
    [
        'name' => 'Minta Termék',
        'quantity' => 2,
        'quantityUnit' => 'db',
        'netUnitPrice' => 100,
        'vatRate' => '25',
        'netValue' => 200,
        'vatValue' => 50,
        'grossValue' => 250,
    ],
    [
        'name' => 'Minta Termék 2',
        'quantity' => 1,
        'quantityUnit' => 'db',
        'netUnitPrice' => 100,
        'vatRate' => '25',
        'netValue' => 100,
        'vatValue' => 25,
        'grossValue' => 125,
    ],
];

$invoice->paymentMethod = 'utánvétel';
$invoice->currency = 'HUF';
$invoice->language = 'hu';

$invoice->signatureDate = '2016-01-02';
$invoice->settlementDate = '05/10/2015';
$invoice->dueDate = '2016-01-02';

try {
    /**
     * számla mezőinek ellenőrzése
     */
    $invoice->validate();
}catch(Illuminate\Validation\ValidationException $e){
    /**
     * hibás vagy hiányzó mezők
     */
    // var_dump( $e->validator->getMessages() );
}

$client = new Clapp\SzamlazzhuClient\SzamlazzhuClient();
$client->username = /* Számlázz.hu felhasználónév */;
$client->password = /* Számlázz.hu jelszó */;

try {
    $pdfContents = $client->generateInvoicePdf($invoice);
}catch(Clapp\SzamlazzhuClient\SzamlazzhuApiException $e){
    // var_dump( $e->getCode(), $e->getMessage() ); //API-ból származó hibakód és hibaüzenet
}
file_put_contents("szamlam.pdf", $pdfContents);
```

További minták és használat
---------------------------

[](#további-minták-és-használat)

[Github wikiben](https://github.com/clappcom/szamlazzhuclient/wiki/Haszn%C3%A1lat)

Dokumentáció
------------

[](#dokumentáció)

[Github wikiben](https://github.com/clappcom/szamlazzhuclient/wiki/Dokument%C3%A1ci%C3%B3)

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance17

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 96.1% 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

Every ~248 days

Total

3

Last Release

3125d ago

PHP version history (2 changes)v1.0.0-beta1PHP ^5.5.9

v1.0.0-beta3PHP ^5.5.9 | ~7.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/af91001e579af8edf9eb81d0e7ffa174e63c042801e73bde59c7ed51bf9900d3?d=identicon)[dsge](/maintainers/dsge)

---

Top Contributors

[![dsge](https://avatars.githubusercontent.com/u/5737250?v=4)](https://github.com/dsge "dsge (49 commits)")[![creever](https://avatars.githubusercontent.com/u/1244590?v=4)](https://github.com/creever "creever (2 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/clapp-szamlazzhuclient/health.svg)

```
[![Health](https://phpackages.com/badges/clapp-szamlazzhuclient/health.svg)](https://phpackages.com/packages/clapp-szamlazzhuclient)
```

###  Alternatives

[vluzrmos/slack-api

Wrapper for Slack.com WEB API.

102589.1k3](/packages/vluzrmos-slack-api)[ashallendesign/laravel-exchange-rates

A wrapper package for interacting with the exchangeratesapi.io API.

485677.8k](/packages/ashallendesign-laravel-exchange-rates)[smodav/mpesa

M-Pesa API implementation

16363.7k1](/packages/smodav-mpesa)[flarum/core

Delightfully simple forum software.

211.3M1.9k](/packages/flarum-core)[jasara/php-amzn-selling-partner-api

A fluent interface for Amazon's Selling Partner API in PHP

1344.8k1](/packages/jasara-php-amzn-selling-partner-api)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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