avoutic/web-framework-stripe 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

avoutic/web-framework-stripe

最新稳定版本:3.0.0

Composer 安装命令:

composer require avoutic/web-framework-stripe

包简介

Stripe module for web-framework

README 文档

README

This module provides Stripe integration for WebFramework, offering a clean interface to interact with Stripe's API for handling payments, subscriptions, and webhooks.

Features

  • Stripe customer management
  • Product and price creation
  • Subscription handling
  • Webhook verification
  • Invoice retrieval
  • Production and development environment support

Requirements

  • PHP 8.2 or higher
  • WebFramework 8.x
  • Stripe PHP SDK 7.128 or higher

Installation

Install via Composer:

composer require avoutic/web-framework-stripe

Make sure the definitions file is included in your project by adding it to definition_files in your config.php file:

return [
    'definition_files' => [
        '../vendor/avoutic/web-framework/definitions/definitions.php',
        '../vendor/avoutic/web-framework-stripe/definitions/definitions.php',
        'app_definitions.php',
    ],
];

Configuration

If you are using the definition from definitions/defitinions.php. You can just add the following stripe.php to your auth config directory (config/auth):

<?php

return [
    'api_key' => env('STRIPE_SECRET_KEY'),'your_stripe_secret_key',
    'publishable_api_key' => env('STRIPE_PUBLISHABLE_KEY'),
    'endpoint_secret' => env('STRIPE_WEBHOOK_SECRET')
]

统计信息

  • 总下载量: 231
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-03-29