PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Edward Paul   Laravel Central Billing System   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Central Billing System
Generate invoices to perform payments with CBS API
Author: By
Last change:
Date: 3 years ago
Size: 1,446 bytes
 

Contents

Class file image Download
{ "name": "infinitypaul/laravel-cbs", "description": "A Laravel Package for working with central billing system seamlessly", "keywords": [ "infinitypaul", "laravel-cbs", "Parkway Project", "Edward Paul", "Central Billing System", "Invoice" ], "homepage": "https://github.com/infinitypaul/laravel-cbs", "license": "MIT", "type": "library", "authors": [ { "name": "Paul Edward", "email": "infinitypaul@live.com", "role": "Developer" } ], "require": { "php": "^5.4.0|^7.0", "illuminate/support": "5.*|6.*|7.*", "guzzlehttp/guzzle": "5.*|6.*", "ext-json": "*" }, "require-dev": { "orchestra/testbench": "3.*|4.*|5.*" }, "autoload": { "psr-4": { "Infinitypaul\\Cbs\\": "src" } }, "autoload-dev": { "psr-4": { "Infinitypaul\\Cbs\\Tests\\": "tests" } }, "scripts": { "test": "vendor/bin/phpunit", "test-coverage": "vendor/bin/phpunit --coverage-html coverage" }, "config": { "sort-packages": true }, "extra": { "laravel": { "providers": [ "Infinitypaul\\Cbs\\CbsServiceProvider" ], "aliases": { "Cbs": "Infinitypaul\\Cbs\\Facades\\Cbs" } } } }