Download the PHP package codestage/laravel-netopia without Composer
On this page you can find all versions of the php package codestage/laravel-netopia. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download codestage/laravel-netopia
More information about codestage/laravel-netopia
Files in codestage/laravel-netopia
Download codestage/laravel-netopia
More information about codestage/laravel-netopia
Files in codestage/laravel-netopia
Vendor codestage
Package laravel-netopia
Short Description A fluent interface for interacting with Netopia's services.
License MIT
Package laravel-netopia
Short Description A fluent interface for interacting with Netopia's services.
License MIT
Please rate this library. Is it a good library?
Informations about the package laravel-netopia
laravel-netopia
A fluent interface for interacting with Netopia's services.
Info
Database
It'll create a table named netopia_payments
with the following configuration:
Routes
3 routes will be added, as follows: | Method | URL | Note |
---|---|---|---|
GET | /netopia/pay/{payment} | Todo | |
GET | /netopia/success | Todo | |
POST | /netopia/ipn | Todo |
Get started
Paste into your terminal
composer require codestage/laravel-netopia
Configuration
1. Environment variables
Add the following variables to your .env file:
2. Config file
Create a netopia.php under the app's config directory. It should return an array composed of
Parameter | Value | Info |
---|---|---|
environment | env('NETOPIA_ENVIRONMENT', 'sandbox') | The environment that Netopia is running in. Valid values are: 'sandbox', 'production' |
signature | env('NETOPIA_SIGNATURE') | The merchant signature provided by Netopia. |
currency | env('NETOPIA_CURRENCY', 'EUR') | The currency used for Netopia. |
certificate_path | array | The paths to the certificate files used for Netopia requests. |
certificate_path['public'] | base_path('certificates/' . env('NETOPIA_PUBLIC_FILE', 'netopia.cer')) | |
certificate_path['secret'] | base_path('certificates/' . env('NETOPIA_PUBLIC_FILE', 'netopia.cer')) |
All versions of laravel-netopia with dependencies
PHP Build Version
Package Version
Requires
ext-soap Version
*
illuminate/support Version ^10
netopia/payment Version ^1.0
illuminate/http Version ^10
guzzlehttp/guzzle Version ^7.5
doctrine/dbal Version ^3.6
illuminate/support Version ^10
netopia/payment Version ^1.0
illuminate/http Version ^10
guzzlehttp/guzzle Version ^7.5
doctrine/dbal Version ^3.6
The package codestage/laravel-netopia contains the following files
Loading the files please wait ....