From 420d2dda8aa75109d0fc895addcbd23dc50962fd Mon Sep 17 00:00:00 2001 From: AuroraYolo <847050412@qq.com> Date: Mon, 30 Oct 2023 23:21:02 +0800 Subject: [PATCH] Add htt2+grpc service to todo list and exclude HPack scripts from php-cs-fixer In this commit, a new task 'htt2+grpc service' is added to the todo list, indicating a new functionality/feature that needs to be addressed. Furthermore, 'http2/src/HPack/huffman-codes.php' and 'http2/src/HPack/huffman-lookup.php' files are excluded from the .php-cs-fixer.php script. This means these files will not be touched by the automatic code standards fixer, likely due to the fact that they have some unique coding conventions or they shouldn't be modified automatically. --- .php-cs-fixer.php | 2 ++ todo.list | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index 78d659c..1ef1071 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -98,6 +98,8 @@ ->exclude('swow-examples') ->exclude('MineAdmin') ->exclude('ssl') + ->exclude('http2/src/HPack/huffman-codes.php') + ->exclude('http2/src/HPack/huffman-lookup.php') ->in(__DIR__) ) ->setUsingCache(false); diff --git a/todo.list b/todo.list index a7f7c42..0e690f9 100644 --- a/todo.list +++ b/todo.list @@ -6,4 +6,5 @@ 6.研究SDB提供网页交互式功能(Ws,Tcp)(进行中) 7.xhgui+xhprof(已完成) 8.page分页功能(已完成) -9.调试swow-debug的能力需要在编译swow的时候开启debug模式 \ No newline at end of file +9.调试swow-debug的能力需要在编译swow的时候开启debug模式 +10.htt2+grpc服务 \ No newline at end of file