Download the PHP package kalimeromk/casys-laravel without Composer

On this page you can find all versions of the php package kalimeromk/casys-laravel. 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 casys-laravel

Laravel >=5

This is a package to integrate Casys payment gateway in laravel it generates complete scaffolding for simple integration. It create:

Views

--resources/view/vendor/casys

Controller

--/Http/Controllers/CasysController

Aditional class

--/Http/Helper/Casys.php

Installation

Require this package in your composer.json "kalimeromk/casys-laravel": "9999999-dev", and run composer update or run composer require kalimeromk/casys-laravel

After updating composer you need to run :

$ php artisan vendor:publish --provider="Kalimero\Casys\CasysServiceProvider"

It will publish the files from this package it will add this files

config/casys.php,
app/Http/Controllers/CasysController.php,
app/Traits/Casys.php,
resources/views/vendor/casys
routes/casys.php

Laravel

Register route file in RouteServiceProvider or add this routes to existing root file

use App\Http\Controllers\CasysController;

Route::get('paymentLoader', [CasysController::class, 'index'])->name('loader');
Route::post('payment', [CasysController::class, 'getCasys'])->name('validateAndPay');
Route::post('paymentOKURL', [CasysController::class, 'success'])->name('paymentOKURL');
Route::post('paymentFailURL', [CasysController::class, 'fail'])->name('paymentFailURL');

NOTE: This is only needed in Laravel <=7

Route::get('paymentLoader', 'CasysController@index')->name('loader');
Route::post('payment', 'CasysController@getCasys')->name('validateAndPay');
Route::post('paymentOKURL', 'CasysController@success')->name('paymentOKURL');
Route::post('paymentFailURL', 'CasysController@fail')->name('paymentFailURL');

how to use

Add you credentionals in .env file like this

PAY_TO_MERCHANT=
MERCHANT_NAME=
AMOUNT_CURRENCY=MKD
PAYMENT_OK_URL=
PAYMENT_FAIL_URL=
CASYS_TOKEN=

and now only need to pass amount and client data to the method in controller

Views at the moment are coming form the package if you want to use the published one jus edit the controller

Info

This package is still very alpha and it is not created as a proper package so it can be easy updated to feed you needs

- Suggestions are welcome :)

All versions of casys-laravel with dependencies

PHP Build Version
Package Version
Requires php Version >=7.3.0
ext-json Version *
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 kalimeromk/casys-laravel contains the following files

Loading the files please wait ....