diff --git a/CHANGELOG.md b/CHANGELOG.md index 93e1fa1..6ab777c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,22 @@ # 版本更新日志 +## [1.12.0](http://124.126.16.154:8888/singularity/hdk-pay/compare/v1.11.1...v1.12.0) (2025-11-28) + + +### 👷 Continuous Integration | CI 配置 + +* 添加测试相关的CI脚本 ([327066b](http://124.126.16.154:8888/singularity/hdk-pay/commit/327066b1466468ca76141e3b6c47183c5edbcb63)) + + +### ♻️ Code Refactoring | 代码重构 + +* 适配项目目录结构从 app/ 改为 src/ ([6bc4234](http://124.126.16.154:8888/singularity/hdk-pay/commit/6bc423417cfa951073e993169c394063818ddd3d)) + + +### ✨ Features | 新功能 + +* 添加 run-in-docker.sh 脚本用于在容器中运行命令 ([cb938d6](http://124.126.16.154:8888/singularity/hdk-pay/commit/cb938d61302e64119d67313073804a8f1c388352)) +* **账户:** 添加邮箱管理功能并重构账户仓库 ([cae728b](http://124.126.16.154:8888/singularity/hdk-pay/commit/cae728b392e4ef14b70a3872f3ed6166995e57e5)) + ### [1.11.1](http://124.126.16.154:8888/singularity/hdk-pay/compare/v1.11.0...v1.11.1) (2025-11-27) ## [1.11.0](http://124.126.16.154:8888/singularity/hdk-pay/compare/v1.10.0...v1.11.0) (2025-11-27) diff --git a/composer.json b/composer.json index 4f9b04b..f995a17 100755 --- a/composer.json +++ b/composer.json @@ -48,17 +48,17 @@ } }, "scripts": { - "post-root-package-install": [ - "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" - ], - "test": [ - "rm -rf runtime", - "Composer\\Config::disableProcessTimeout", - "APP_STATUS=false pest --coroutine --prepend=tests/bootstrap.php --colors=always $1" - ], - "cs-fix": "php-cs-fixer fix $1", - "analyse": "phpstan analyse --memory-limit 300M -l 0 -c phpstan.neon ./src ./config" - }, + "post-root-package-install": [ + "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" + ], + "test": [ + "rm -rf runtime", + "Composer\\Config::disableProcessTimeout", + "APP_STATUS=false pest --coroutine --prepend=tests/bootstrap.php --colors=always $1" + ], + "cs-fix": "php-cs-fixer fix $1", + "analyse": "phpstan analyse --memory-limit 300M -l 0 -c phpstan.neon ./src ./config" + }, "repositories": { "nest": { "type": "composer", @@ -69,5 +69,5 @@ "url": "https://mirrors.aliyun.com/composer/" } }, - "version": "1.11.1" + "version": "1.12.0" }