PHPackages                             tourze/wechat-mini-program-order-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. tourze/wechat-mini-program-order-bundle

ActiveSymfony-bundle[API Development](/categories/api)

tourze/wechat-mini-program-order-bundle
=======================================

微信小程序-购物订单

0.0.2(5mo ago)00MITPHPCI passing

Since Nov 7Pushed 4mo ago1 watchersCompare

[ Source](https://github.com/tourze/wechat-mini-program-order-bundle)[ Packagist](https://packagist.org/packages/tourze/wechat-mini-program-order-bundle)[ RSS](/packages/tourze-wechat-mini-program-order-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (39)Versions (3)Used By (0)

WeChat Mini Program Order Bundle
================================

[](#wechat-mini-program-order-bundle)

[![PHP Version](https://camo.githubusercontent.com/cc9cdea9aa96b40a822425e981b0a030e3371202973c7d57b74e8e99834f81dc/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d253545382e312d626c7565)](https://php.net)[![Symfony](https://camo.githubusercontent.com/f8657920fcda649d7395bd409826245a37404b0e247437f78b29601093c66565/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f73796d666f6e792d253545362e342d677265656e)](https://symfony.com)[![License](https://camo.githubusercontent.com/b8cadaa967891081f8f165695470689986c028821dd8a040132f6e661795dc0d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c7565)](LICENSE)[![Build Status](https://camo.githubusercontent.com/b0c6c6845a74cb65a7f0a32bdcfd8fbf80eeb40026c4029af424ab371c94b8bd/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6275696c642d70617373696e672d627269676874677265656e)](../../actions)[![Code Coverage](https://camo.githubusercontent.com/32855e94577df9d0a30995653b17d33a5fbfdf644518f96ea0374313397d19b7/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f7665726167652d3130302532352d627269676874677265656e)](tests)[![Tests](https://camo.githubusercontent.com/d940ad7f0752e2cbe0d63c50dcebf329078807390051c41fe63258f1b5c4e182/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f74657374732d70617373696e672d627269676874677265656e)](tests)

[English](README.md) | [中文](README.zh-CN.md)

A Symfony Bundle for WeChat Mini Program shopping order management, providing shopping information and shipping information upload capabilities.

Features
--------

[](#features)

- 🛍️ **Shopping Information Management**: Upload and manage shopping order details
- 🚚 **Shipping Information Management**: Upload and manage shipping/logistics information
- 🏗️ **Entity Management**: Complete Doctrine entity definitions for orders, items, and shipping
- 📊 **Repository Pattern**: Repository classes for data access
- 🔄 **Event-Driven**: Event subscribers for order processing
- 🧪 **Fully Tested**: Comprehensive test coverage with PHPUnit

Installation
------------

[](#installation)

```
composer require tourze/wechat-mini-program-order-bundle
```

Quick Start
-----------

[](#quick-start)

### 1. Bundle Configuration

[](#1-bundle-configuration)

Add the bundle to your `config/bundles.php`:

```
return [
    // ... other bundles
    WechatMiniProgramOrderBundle\WechatMiniProgramOrderBundle::class => ['all' => true],
];
```

### 2. Basic Usage

[](#2-basic-usage)

```
