Download the PHP package fakturoid/fakturoid-php without Composer

On this page you can find all versions of the php package fakturoid/fakturoid-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package fakturoid-php

Fakturoid PHP lib

![Tests](https://github.com/fakturoid/fakturoid-php/actions/workflows/main.yml/badge.svg)

PHP library for Fakturoid.cz. Please see API for more documentation. New account just for testing API and using separate user (created via "Settings > User account") for production usage is highly recommended.

Content

Versions

Lib. version Fakturoid API PHP
4.x v3 >=8.2
3.x v3 >=8.2
2.x v3 >=8.1
1.x v2 >=5.3.0

Installation

The recommended way to install is through Composer:

Library requires PHP 8.2 (or later) and ext-json, nyholm/psr7 and psr/http-client extensions.

User agent and HTTP client

You need to create your own client that implements Psr\Http\Client\ClientInterface or you can use symfony/http-client, guzzlehttp/guzzle or other. And you also need to set a default header value for this client, where you need to specify User-Agent.

Creating a client using Guzzle

Create a client using Symfony

In Symfony app you can define in configuration

Authorization by OAuth 2.0

Authorization Code Flow

Authorization using OAuth takes place in several steps. We use data obtained from the developer portal as client ID and client secret (Settings → Connect other apps → OAuth 2 for app developers).

First, we offer the user a URL address where he enters his login information. We obtain this using the following method:

After entering the login data, the user is redirected to the specified redirect URI and with the code with which we obtain his credentials. We process the code as follows:

Credentials are now established in the object instance and we can send queries to the Fakturoid api. Credentials can be obtained in 2 ways. Obtaining credentials directly from the object:

Client Credentials Flow

Processing credentials using the credentials callback:

The way callback works is that the library calls the callback function whenever the credentials are changed. This is useful because the token is automatically refreshed after its expiration.

Usage

Set credentials to the Fakturoid manager

If you run a multi-tenant application or an application that processes documents in parallel, you need to set Credentials correctly. Each time a new access token is obtained, the previous one is invalidated. For these needs there is AuthProvider::setCredentials() and also CredentialCallback.

Switch account

Basic usage

Downloading an invoice PDF

If you call $fManager->getInvoicesProvider()->getPdf() right after creating an invoice, you'll get a status code 204 (No Content) with empty body, this means the invoice PDF hasn't yet been generated and you should try again a second or two later.

More info in API docs.

Using custom_id

You can use custom_id attribute to store your application record ID into our record. Invoices and subjects can be filtered to find a particular record:

As for subjects, Fakturoid won't let you create two records with the same custom_id so you don't have to worry about multiple results. Also note that the field always returns a string.

InventoryItem resource

To get all inventory items:

To filter inventory items by certain SKU code or article number:

To search inventory items (searches in name, article_number and sku):

To get all archived inventory items:

To get a single inventory item:

To create an inventory item:

To update an inventory item:

To archive an inventory item:

To unarchive an inventory item:

To delete an inventory item:

InventoryMove resource

To get get all inventory moves across all inventory items:

To get inventory moves for a single inventory item:

To get a single inventory move:

To create a stock-in inventory move:

To create a stock-out inventory move:

To update an inventory move:

To delete an inventory move:

Handling errors

Library raises Fakturoid\Exception\ClientErrorException for 4xx and Fakturoid\Exception\ServerErrorException for 5xx status. You can get response code and response body by calling getCode() or getResponse()->getBody().

Common problems

Development

Docker

Testing

Both commands do the same but the second version is a bit faster.

Code-Style Check

Both commands do the same but the second version seems to have a more intelligent output.

Check all requires for PR

Or you can fix CS and Rector issues automatically:


All versions of fakturoid-php with dependencies

PHP Build Version
Package Version
Requires php Version >=8.2
ext-json Version *
psr/http-client Version ^1.0
nyholm/psr7 Version ^1.8
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package fakturoid/fakturoid-php contains the following files

Loading the files please wait ....