Results 9 issues of heui

https://github.com/thephpleague/oauth2-client/pull/606

https://github.com/lokielse/omnipay-alipay/blob/465f9e362030c7905478ab34a83db42f5f1b0054/src/Requests/LegacyRefundNoPwdRequest.php#L242 这里数据有编码问题 simplexml_load_string(): iconv : problems with filters for 'GBK'

https://github.com/php-amqplib/Thumper/blob/71de0d0722ea6f6cd37361a9785f6e51b296136e/lib/Thumper/Consumer.php#L64 I want to set `$timeout` for wait method, how to ?

when ``` html test. ``` or ``` html test, ``` jquery throw an error > Uncaught Error: Syntax error, unrecognized expression

The github_edit_link tag currently generates edit links that point to the gh-pages branch by default. This is not ideal when using other default branches like main. It would be helpful...

版本4.0.29 在实体类里面使用`$this->newQuery()`进行查询到时候没有自动添加delete_time判断,不知道是不是有问题,还是属于正常现象

https://github.com/top-think/think-validate/blob/f7dd85675270e9f8c0b04a13362133067629f53c/src/Validate.php#L1484 ![Image](https://github.com/user-attachments/assets/835336e5-4d82-41f5-a74d-60e3d7044a9b) 图片展示的是查询`UserAddress`用户的地址是否存在,我这里是用unique实现的, 规则`'address_id' => 'require|exist:'.UserAddress::class.',id=address_id&uid=uid'` 我现在这样写的查询是 ```sql SELECT `id` FROM `eb_user_address` WHERE ( `id` = address_id AND `uid` = 14 ) LIMIT 1 ``` 其实期望得到应该是 ```sql SELECT `id` FROM...

比如我下面的代码 ```php $this->where('1 = 1')->field( [ 'SUM(CASE WHEN point > 0 THEN point ELSE 0 END) AS positive_total', 'SUM(CASE WHEN point < 0 THEN point ELSE 0 END) AS negative_total',...