All Projects → JonathanItakpe → payantNG-php

JonathanItakpe / payantNG-php

Licence: MIT license
PHP Library for PayantNG

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to payantNG-php

Angularspree
angular e-commerce framework for online store
Stars: ✭ 1,576 (+11157.14%)
Mutual labels:  ecommerce, commerce
Commerce
Fully integrated ecommerce for Craft CMS
Stars: ✭ 144 (+928.57%)
Mutual labels:  ecommerce, commerce
Vc Storefront
VirtoCommerce Storefront for ASP.NET Core 3.1 repository
Stars: ✭ 122 (+771.43%)
Mutual labels:  ecommerce, commerce
Ever
Ever® - Open-Source Commerce Platform for On-Demand Economy and Digital Marketplaces
Stars: ✭ 980 (+6900%)
Mutual labels:  ecommerce, commerce
DigitalProducts
Sell digital products with Craft Commerce
Stars: ✭ 48 (+242.86%)
Mutual labels:  ecommerce, commerce
Laravel Ecommerce
AvoRed an Open Source Laravel Shopping Cart
Stars: ✭ 1,151 (+8121.43%)
Mutual labels:  ecommerce, commerce
Saleor
A modular, high performance, headless e-commerce platform built with Python, GraphQL, Django, and React.
Stars: ✭ 14,720 (+105042.86%)
Mutual labels:  ecommerce, commerce
Example Storefront
Example Storefront is Reaction Commerce’s headless ecommerce storefront - Next.js, GraphQL, React. Built using Apollo Client and the commerce-focused React UI components provided in the Storefront Component Library (reactioncommerce/reaction-component-library). It connects with Reaction backend with the GraphQL API.
Stars: ✭ 471 (+3264.29%)
Mutual labels:  ecommerce, commerce
Ymple Ecommerce
Node js E-commerce Framework powered with Sails.js & Node.js as an Ecommerce Platform Shop Solution
Stars: ✭ 152 (+985.71%)
Mutual labels:  ecommerce, commerce
Orocommerce
Main OroCommerce package with core functionality.
Stars: ✭ 148 (+957.14%)
Mutual labels:  ecommerce, commerce
Jet
Jet is an e-commerce framework for Amber / Crystal
Stars: ✭ 18 (+28.57%)
Mutual labels:  ecommerce, commerce
Coreshop
CoreShop - Pimcore eCommerce
Stars: ✭ 193 (+1278.57%)
Mutual labels:  ecommerce, commerce
Vc Platform
VirtoCommerce Platform repository
Stars: ✭ 828 (+5814.29%)
Mutual labels:  ecommerce, commerce
Commerce.js
Open source, JS eCommerce SDK for building headless, Jamstack applications. Build custom storefronts, carts, and checkouts in any frontend framework, platform, or device. Integrates with Stripe, Square, PayPal, Paymill and Razorpay with support for 135+ currencies.
Stars: ✭ 112 (+700%)
Mutual labels:  ecommerce, commerce
Commercejs Nextjs Demo Store
Commerce demo store built for the Jamstack. Built with Commerce.js, Next.js, and can be one-click deployed to Netlify. Includes product catalog, categories, variants, cart, checkout, payments (Stripe) order confirmation, and printable receipts.
Stars: ✭ 737 (+5164.29%)
Mutual labels:  ecommerce, commerce
Grandnode
Open source, headless, multi-tenant eCommerce platform built with .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, Vue.js.
Stars: ✭ 1,768 (+12528.57%)
Mutual labels:  ecommerce, commerce
React Storefront
React Storefront - PWA for eCommerce. 100% offline, platform agnostic, headless, Magento 2 supported. Always Open Source, Apache-2.0 license. Join us as contributor ([email protected]).
Stars: ✭ 292 (+1985.71%)
Mutual labels:  ecommerce, commerce
Spree starter
Dockerized @spree demo & starter template
Stars: ✭ 297 (+2021.43%)
Mutual labels:  ecommerce, commerce
Reaction
Mailchimp Open Commerce is an API-first, headless commerce platform built using Node.js, React, GraphQL. Deployed via Docker and Kubernetes.
Stars: ✭ 11,588 (+82671.43%)
Mutual labels:  ecommerce, commerce
Next Ecommerce
⚡️ Quantum Ecommerce. Made with Next.js | GraphQL | Apollo Server | Apollo Client | SSR
Stars: ✭ 186 (+1228.57%)
Mutual labels:  ecommerce, commerce

payantNG-php

PHP Library for PayantNG

How to Use

Require the package from Packagist - composer require jonathanitakpe/payantng-php

Function Naming Convention

Functions are named based on the documentation located https://developers.payant.ng/overview

Add Client from the documentation becomes $Payant->addClient() as in the sample code below:

Sample code

<?php
require_once 'vendor/autoload.php';
use PayantNG\Payant;

$Payant = new Payant\Payant('13337b87ee76gew87fg87gfweugf87w7ge78f229c');
$client_deet = ['first_name' => 'Jonathan',
				'last_name' => 'Itakpe',
				'email' => '[email protected]',
				'phone' => '+234809012345'];

$Payant->addClient($client_deet);
 ?>
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].