File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed
Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1111composer.lock
1212.rr.yaml
1313rr
14+ runtime
1415
Original file line number Diff line number Diff line change 1919 ],
2020 "require" : {
2121 "php" : " >=8.0" ,
22- "microphp/framework" : " dev-master"
22+ "microphp/framework" : " dev-master" ,
23+ "microphp/workerman" : " dev-master" ,
24+ "microphp/roadrunner" : " dev-master"
2325 },
2426 "require-dev" : {
2527 "friendsofphp/php-cs-fixer" : " ^3.22.0" ,
3133 ]
3234 },
3335 "minimum-stability" : " dev" ,
34- "prefer-stable" : true
36+ "prefer-stable" : true ,
37+ "repositories" : {
38+ "microphp" : {
39+ "type" : " path" ,
40+ "url" : " ../*"
41+ }
42+ }
3543}
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ return [
6+ 'enable_workerman_log ' => true ,
7+ ];
Original file line number Diff line number Diff line change 44
55use App \Controller \Index ;
66use App \Middleware \NothingMiddleware ;
7- use League \Route \Router ;
87use MicroPHP \Framework \Http \Response ;
8+ use MicroPHP \Framework \Router \Router ;
99
1010$ router = new Router ();
1111
You can’t perform that action at this time.
0 commit comments