All Projects → josemmo → Facturae Php

josemmo / Facturae Php

Licence: mit
📝 Genera, firma, envía y recibe facturas electrónicas sin necesidad de ninguna librería adicional

Labels

Projects that are alternatives of or similar to Facturae Php

Human Detection And Tracking
Human-detection-and-Tracking
Stars: ✭ 753 (+917.57%)
Mutual labels:  face
React Facial Feature Tracker
React Component for Facial Feature Recognition based on the clmtracker
Stars: ✭ 13 (-82.43%)
Mutual labels:  face
Android Hpe
Android native application to perform head pose estimation using images coming from the front camera.
Stars: ✭ 46 (-37.84%)
Mutual labels:  face
Jeelizweboji
JavaScript/WebGL real-time face tracking and expression detection library. Build your own emoticons animated in real time in the browser! SVG and THREE.js integration demos are provided.
Stars: ✭ 835 (+1028.38%)
Mutual labels:  face
Danneskjold Theme
Beautiful high-contrast emacs theme
Stars: ✭ 26 (-64.86%)
Mutual labels:  face
Facealignmentcompare
Empirical Study of Recent Face Alignment Methods
Stars: ✭ 15 (-79.73%)
Mutual labels:  face
Emopy
A deep neural net toolkit for emotion analysis via Facial Expression Recognition (FER)
Stars: ✭ 744 (+905.41%)
Mutual labels:  face
Sketchtoface
Pix2Pix Image translation using conditional generative adversarial network - sketch to face
Stars: ✭ 66 (-10.81%)
Mutual labels:  face
Rude Carnie
Age detection in Tensorflow
Stars: ✭ 869 (+1074.32%)
Mutual labels:  face
Centerface
face detection
Stars: ✭ 1,002 (+1254.05%)
Mutual labels:  face
Keras Morph2 Age Estimation
Keras implementation for MORPH2 dataset
Stars: ✭ 17 (-77.03%)
Mutual labels:  face
Brfv4 mac examples
macOS C++ examples utilizing OpenCV for camera access and drawing the face tracking results.
Stars: ✭ 25 (-66.22%)
Mutual labels:  face
Restful Lenny
A lenny API. Use this to bring Lenny face to your applications
Stars: ✭ 31 (-58.11%)
Mutual labels:  face
Uiimageview Betterface
a UIImageView category to let the picture-cutting with faces showing better
Stars: ✭ 790 (+967.57%)
Mutual labels:  face
Facifier
An emotion and gender detector based on facial features, built with Python and OpenCV
Stars: ✭ 52 (-29.73%)
Mutual labels:  face
Biometricauthentication
Use Apple FaceID or TouchID authentication in your app using BiometricAuthentication.
Stars: ✭ 746 (+908.11%)
Mutual labels:  face
Anonymize Video
Replace faces in a video with imaginary persons generated by a progressive GAN deep neural network
Stars: ✭ 15 (-79.73%)
Mutual labels:  face
Face recognition
Face recognition docker image to provide a web service which is able to register and recognize faces
Stars: ✭ 74 (+0%)
Mutual labels:  face
Mtcnn
face detection and alignment with mtcnn
Stars: ✭ 66 (-10.81%)
Mutual labels:  face
Animeavataar
creating Anime Avataar from a facial image
Stars: ✭ 31 (-58.11%)
Mutual labels:  face

Facturae-PHP

CI Codacy Coverage Última versión estable Versión de PHP Documentación

Facturae-PHP es un paquete escrito puramente en PHP que permite generar facturas electrónicas siguiendo el formato estructurado Facturae, añadirlas firma electrónica XAdES y sellado de tiempo, e incluso enviarlas a FACe o FACeB2B sin necesidad de ninguna librería o clase adicional.

En apenas 25 líneas de código y con un tiempo de ejecución inferior a 0,4 µs es posible generar, firmar y exportar una factura electrónica totalmente válida:

$fac = new Facturae();
$fac->setNumber('FAC201804', '123');
$fac->setIssueDate('2018-04-01');

$fac->setSeller(new FacturaeParty([
  "taxNumber" => "A00000000",
  "name"      => "Perico de los Palotes S.A.",
  "address"   => "C/ Falsa, 123",
  "postCode"  => "12345",
  "town"      => "Madrid",
  "province"  => "Madrid"
]));
$fac->setBuyer(new FacturaeParty([
  "isLegalEntity" => false,
  "taxNumber"     => "00000000A",
  "name"          => "Antonio",
  "firstSurname"  => "García",
  "lastSurname"   => "Pérez",
  "address"       => "Avda. Mayor, 7",
  "postCode"      => "54321",
  "town"          => "Madrid",
  "province"      => "Madrid"
]));

$fac->addItem("Lámpara de pie", 20.14, 3, Facturae::TAX_IVA, 21);

$fac->sign("certificado.pfx", null, "passphrase");
$fac->export("mi-factura.xsig");

Requisitos

  • PHP 5.6 o superior
  • OpenSSL (solo para firmar facturas)
  • cURL (solo para timestamping y FACe / FACeB2B)
  • libXML (solo para FACe y FACeB2B)

Características

Licencia

Facturae-PHP se encuentra bajo licencia MIT. Eso implica que puedes utilizar este paquete en cualquier proyecto (incluso con fines comerciales), siempre y cuando hagas referencia al uso y autoría de la misma.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].