Download the PHP package quantic-telecom/invoices without Composer

On this page you can find all versions of the php package quantic-telecom/invoices. 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 invoices

Quantic Telecom Invoices

Build Status

This package gives you an easy way to manage invoices.

Installation

Per usual, install Invoices through Composer.

Contracts

Invoices

An invoice is a object inheriting from AbstractInvoice. It is composed of an ID, a customer (represented by CustomerInterface) and two dates: the due date and the creation date (these two are represented by Carbon instances).

It provides abstract methods to compute the total price (with and without taxes). The french VAT rate is currently hard code into the AbstractInvoice class ($vatRate static property) but will be extract in a future release. Implementations of AbstractInvoice don't have to use this value. The VAT amount is compute base on the subtraction between the implementation of the getIncludingTaxTotalPrice and the getExcludingTaxTotalPrice abstract methods.

A payment (represented by PaymentInterface) can be set in order to have a paid invoice (with the method isPaid).

Containers

An invoice is also a container of items and a container of groups of items.

An item (represented by ItemInterface) is a simple line of the invoice (name, quantity, unit prices and total prices with and without taxes).

A group of items container (represented by GroupOfItemsInterface) has a name. As an invoice, it's a container of items and a container of groups of items recursively.

Invoice generation

An invoice could be generated into HTML thanks to HtmlGeneratorInterface or in PDF thanks to PdfGeneratorInterface (note that our implementation of PdfGeneratorInterface requires an HtmlGeneratorInterface implementation).

Implementations

Invoices

This package provides two implementations of AbstractInvoice:

Containers

This packages also provides basic implementations for ItemInterface (Item) and GroupOfItemsInterface (GroupOfItems)

Generators

The implementation of HtmlGeneratorInterface is named HtmlGenerator and is based on Laravel Views.

An implementation of PdfGeneratorInterface named PdfGenerator is provided based on PhantomJS (a javascript browser). Our implementation of PdfGeneratorInterface requires an implementation of HtmlGeneratorInterface to process.


All versions of invoices with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6.0
illuminate/support Version ~5.2.0
illuminate/view Version ~5.2.0
nesbot/carbon Version ~1.0
symfony/process Version ~3.0.0
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 quantic-telecom/invoices contains the following files

Loading the files please wait ....