Download the PHP package larva/think-transaction without Composer

On this page you can find all versions of the php package larva/think-transaction. 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 think-transaction

think-transaction

Latest Stable Version Total Downloads

这是一个内部收单系统,依赖 yansongda/pay 这个组件,本收单系统,统一了调用。 备注,交易单位是分;

环境需求

安装

由于 ThinkPHP 不支持发布迁移文件到应用目录,所以你需要手动复制迁移文件到你应用的迁移目录后执行迁移; 迁移文件在 vendor/larva/think-transaction/migrations 下;

事件

你自己的订单关联参考下面的类,总体思路是你自己的订单模型或者其他需要用户付款的模型在模型创建后你可以用创建后事件来调用付款; 需要在前端或者APP端执行付款逻辑的时候,你只需要 $model->charge->getCredential(); 就能获取到付款参数,带入对应的SDK即可,比如APP的SDK需要的几个参数,这里都能获取到。 \Larva\Transaction\Events\ChargeSucceeded 事件你可以监听到付款成功的事件, 你只需判断事件的source属性是否是你当前这个模型的实例即可知道是谁触发了付款并且付款成功;

创建一个事件监听器 php think make:subscribe ChargeShipped

在你 app/event.php 中加入订阅器如:


All versions of think-transaction with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4|^8.0
ext-bcmath Version *
ext-json Version *
topthink/framework Version ^6.0.0
yansongda/pay Version ^3.0
larva/support Version ^1.3
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 larva/think-transaction contains the following files

Loading the files please wait ....