├── .appveyor.yml ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── integrate.yml ├── CREDITS ├── LICENSE ├── README.md ├── check-package.sh ├── config.m4 ├── config.w32 ├── configs ├── yaf_config_ini.c ├── yaf_config_ini.h ├── yaf_config_simple.c └── yaf_config_simple.h ├── package.xml ├── php_yaf.h ├── requests ├── yaf_request_http.c ├── yaf_request_http.h ├── yaf_request_simple.c └── yaf_request_simple.h ├── responses ├── yaf_response_cli.c ├── yaf_response_cli.h ├── yaf_response_http.c └── yaf_response_http.h ├── routes ├── yaf_route_interface.c ├── yaf_route_interface.h ├── yaf_route_map.c ├── yaf_route_map.h ├── yaf_route_regex.c ├── yaf_route_regex.h ├── yaf_route_rewrite.c ├── yaf_route_rewrite.h ├── yaf_route_simple.c ├── yaf_route_simple.h ├── yaf_route_static.c ├── yaf_route_static.h ├── yaf_route_supervar.c └── yaf_route_supervar.h ├── tests ├── 001.phpt ├── 002.phpt ├── 003.phpt ├── 004.phpt ├── 005.phpt ├── 006.phpt ├── 007.phpt ├── 008.phpt ├── 009.phpt ├── 010.phpt ├── 011.phpt ├── 012.phpt ├── 013.phpt ├── 014.phpt ├── 015.phpt ├── 016.phpt ├── 017.phpt ├── 018.phpt ├── 019.phpt ├── 020.phpt ├── 021.phpt ├── 022.phpt ├── 023.phpt ├── 024.phpt ├── 025.phpt ├── 026.phpt ├── 027.phpt ├── 028.phpt ├── 029.phpt ├── 030.phpt ├── 031.phpt ├── 032.phpt ├── 033.phpt ├── 034.phpt ├── 035.phpt ├── 036.phpt ├── 037.phpt ├── 038.phpt ├── 039.phpt ├── 040.phpt ├── 041.phpt ├── 042.phpt ├── 043.phpt ├── 044.phpt ├── 045.phpt ├── 046.phpt ├── 047.phpt ├── 048.phpt ├── 049.phpt ├── 050.phpt ├── 051.phpt ├── 052.phpt ├── 053.phpt ├── 054.phpt ├── 055.phpt ├── 056.phpt ├── 057.phpt ├── 058.phpt ├── 059.phpt ├── 060.phpt ├── 061.phpt ├── 062.phpt ├── 063.phpt ├── 064.phpt ├── 065.phpt ├── 066.phpt ├── 067.phpt ├── 068.phpt ├── 069.phpt ├── 070.phpt ├── 071.phpt ├── 072.phpt ├── 073.phpt ├── 074.phpt ├── 075.phpt ├── 076.phpt ├── 077.phpt ├── 078.phpt ├── 079.phpt ├── 080.phpt ├── 081.phpt ├── 082.phpt ├── 083.phpt ├── 084.phpt ├── 085.phpt ├── 086.phpt ├── 087.phpt ├── 088.phpt ├── 089.phpt ├── 090.phpt ├── 091.phpt ├── 092.phpt ├── 093.phpt ├── 094.phpt ├── 095.phpt ├── 096.phpt ├── 097.phpt ├── 098.phpt ├── 099.phpt ├── 100.phpt ├── 101.phpt ├── 102.phpt ├── 103.phpt ├── 104.phpt ├── 105.phpt ├── 106.phpt ├── 107.phpt ├── 108.phpt ├── 109.phpt ├── 110.phpt ├── bug61493.phpt ├── bug62702.phpt ├── bug63381.phpt ├── bug63438.phpt ├── bug63900.phpt ├── bug70913.phpt ├── bug76213.phpt ├── bug76217.phpt ├── build.inc ├── issue134.phpt ├── issue163.phpt ├── issue231.phpt ├── issue232.phpt ├── issue297.phpt ├── issue303.phpt ├── issue311.phpt ├── issue415.phpt ├── issue420.phpt ├── issue468.phpt ├── issue469.phpt ├── issue513.phpt ├── issue518.phpt ├── issue530.phpt ├── issue535.phpt ├── multi-section.ini ├── simple.ini └── system.ini ├── tools ├── cg │ ├── README.md │ ├── templates │ │ ├── .htaccess.tpl │ │ ├── application │ │ │ ├── Bootstrap.php.tpl │ │ │ ├── controllers │ │ │ │ ├── Error.php.tpl │ │ │ │ └── Index.php.tpl │ │ │ ├── library │ │ │ │ └── readme.txt.tpl │ │ │ ├── models │ │ │ │ └── Sample.php.tpl │ │ │ ├── plugins │ │ │ │ └── Sample.php.tpl │ │ │ └── views │ │ │ │ ├── error │ │ │ │ └── error.phtml.tpl │ │ │ │ └── index │ │ │ │ └── index.phtml.tpl │ │ ├── conf │ │ │ └── application.ini.tpl │ │ ├── index.php.tpl │ │ └── readme.txt.tpl │ └── yaf_cg ├── yaf.php └── yaf_classes.php ├── travis ├── compile.sh └── run-test.sh ├── views ├── yaf_view_interface.c ├── yaf_view_interface.h ├── yaf_view_simple.c └── yaf_view_simple.h ├── yaf.c ├── yaf.dsp ├── yaf.php ├── yaf_action.c ├── yaf_action.h ├── yaf_application.c ├── yaf_application.h ├── yaf_application.stub.php ├── yaf_application_arginfo.h ├── yaf_application_legacy_arginfo.h ├── yaf_bootstrap.c ├── yaf_bootstrap.h ├── yaf_config.c ├── yaf_config.h ├── yaf_config.stub.php ├── yaf_config_arginfo.h ├── yaf_config_legacy_arginfo.h ├── yaf_controller.c ├── yaf_controller.h ├── yaf_controller.stub.php ├── yaf_controller_arginfo.h ├── yaf_controller_legacy_arginfo.h ├── yaf_dispatcher.c ├── yaf_dispatcher.h ├── yaf_dispatcher.stub.php ├── yaf_dispatcher_arginfo.h ├── yaf_dispatcher_legacy_arginfo.h ├── yaf_exception.c ├── yaf_exception.h ├── yaf_loader.c ├── yaf_loader.h ├── yaf_loader.stub.php ├── yaf_loader_arginfo.h ├── yaf_loader_legacy_arginfo.h ├── yaf_logo.h ├── yaf_namespace.h ├── yaf_plugin.c ├── yaf_plugin.h ├── yaf_plugin.stub.php ├── yaf_plugin_arginfo.h ├── yaf_registry.c ├── yaf_registry.h ├── yaf_registry.stub.php ├── yaf_registry_arginfo.h ├── yaf_registry_legacy_arginfo.h ├── yaf_request.c ├── yaf_request.h ├── yaf_request.stub.php ├── yaf_request_arginfo.h ├── yaf_request_legacy_arginfo.h ├── yaf_response.c ├── yaf_response.h ├── yaf_response.stub.php ├── yaf_response_arginfo.h ├── yaf_response_legacy_arginfo.h ├── yaf_route.stub.php ├── yaf_route_arginfo.h ├── yaf_route_legacy_arginfo.h ├── yaf_router.c ├── yaf_router.h ├── yaf_router.stub.php ├── yaf_router_arginfo.h ├── yaf_router_legacy_arginfo.h ├── yaf_session.c ├── yaf_session.h ├── yaf_session.stub.php ├── yaf_session_arginfo.h ├── yaf_session_legacy_arginfo.h ├── yaf_view.c ├── yaf_view.h ├── yaf_view.stub.php ├── yaf_view_arginfo.h └── yaf_view_legacy_arginfo.h /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.phpt eol=lf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/integrate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/.github/workflows/integrate.yml -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | Yaf 2 | Xinchen Hui 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/README.md -------------------------------------------------------------------------------- /check-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/check-package.sh -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/config.w32 -------------------------------------------------------------------------------- /configs/yaf_config_ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/configs/yaf_config_ini.c -------------------------------------------------------------------------------- /configs/yaf_config_ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/configs/yaf_config_ini.h -------------------------------------------------------------------------------- /configs/yaf_config_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/configs/yaf_config_simple.c -------------------------------------------------------------------------------- /configs/yaf_config_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/configs/yaf_config_simple.h -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/package.xml -------------------------------------------------------------------------------- /php_yaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/php_yaf.h -------------------------------------------------------------------------------- /requests/yaf_request_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/requests/yaf_request_http.c -------------------------------------------------------------------------------- /requests/yaf_request_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/requests/yaf_request_http.h -------------------------------------------------------------------------------- /requests/yaf_request_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/requests/yaf_request_simple.c -------------------------------------------------------------------------------- /requests/yaf_request_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/requests/yaf_request_simple.h -------------------------------------------------------------------------------- /responses/yaf_response_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/responses/yaf_response_cli.c -------------------------------------------------------------------------------- /responses/yaf_response_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/responses/yaf_response_cli.h -------------------------------------------------------------------------------- /responses/yaf_response_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/responses/yaf_response_http.c -------------------------------------------------------------------------------- /responses/yaf_response_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/responses/yaf_response_http.h -------------------------------------------------------------------------------- /routes/yaf_route_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_interface.c -------------------------------------------------------------------------------- /routes/yaf_route_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_interface.h -------------------------------------------------------------------------------- /routes/yaf_route_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_map.c -------------------------------------------------------------------------------- /routes/yaf_route_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_map.h -------------------------------------------------------------------------------- /routes/yaf_route_regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_regex.c -------------------------------------------------------------------------------- /routes/yaf_route_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_regex.h -------------------------------------------------------------------------------- /routes/yaf_route_rewrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_rewrite.c -------------------------------------------------------------------------------- /routes/yaf_route_rewrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_rewrite.h -------------------------------------------------------------------------------- /routes/yaf_route_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_simple.c -------------------------------------------------------------------------------- /routes/yaf_route_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_simple.h -------------------------------------------------------------------------------- /routes/yaf_route_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_static.c -------------------------------------------------------------------------------- /routes/yaf_route_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_static.h -------------------------------------------------------------------------------- /routes/yaf_route_supervar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_supervar.c -------------------------------------------------------------------------------- /routes/yaf_route_supervar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/routes/yaf_route_supervar.h -------------------------------------------------------------------------------- /tests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/001.phpt -------------------------------------------------------------------------------- /tests/002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/002.phpt -------------------------------------------------------------------------------- /tests/003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/003.phpt -------------------------------------------------------------------------------- /tests/004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/004.phpt -------------------------------------------------------------------------------- /tests/005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/005.phpt -------------------------------------------------------------------------------- /tests/006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/006.phpt -------------------------------------------------------------------------------- /tests/007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/007.phpt -------------------------------------------------------------------------------- /tests/008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/008.phpt -------------------------------------------------------------------------------- /tests/009.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/009.phpt -------------------------------------------------------------------------------- /tests/010.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/010.phpt -------------------------------------------------------------------------------- /tests/011.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/011.phpt -------------------------------------------------------------------------------- /tests/012.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/012.phpt -------------------------------------------------------------------------------- /tests/013.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/013.phpt -------------------------------------------------------------------------------- /tests/014.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/014.phpt -------------------------------------------------------------------------------- /tests/015.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/015.phpt -------------------------------------------------------------------------------- /tests/016.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/016.phpt -------------------------------------------------------------------------------- /tests/017.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/017.phpt -------------------------------------------------------------------------------- /tests/018.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/018.phpt -------------------------------------------------------------------------------- /tests/019.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/019.phpt -------------------------------------------------------------------------------- /tests/020.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/020.phpt -------------------------------------------------------------------------------- /tests/021.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/021.phpt -------------------------------------------------------------------------------- /tests/022.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/022.phpt -------------------------------------------------------------------------------- /tests/023.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/023.phpt -------------------------------------------------------------------------------- /tests/024.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/024.phpt -------------------------------------------------------------------------------- /tests/025.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/025.phpt -------------------------------------------------------------------------------- /tests/026.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/026.phpt -------------------------------------------------------------------------------- /tests/027.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/027.phpt -------------------------------------------------------------------------------- /tests/028.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/028.phpt -------------------------------------------------------------------------------- /tests/029.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/029.phpt -------------------------------------------------------------------------------- /tests/030.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/030.phpt -------------------------------------------------------------------------------- /tests/031.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/031.phpt -------------------------------------------------------------------------------- /tests/032.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/032.phpt -------------------------------------------------------------------------------- /tests/033.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/033.phpt -------------------------------------------------------------------------------- /tests/034.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/034.phpt -------------------------------------------------------------------------------- /tests/035.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/035.phpt -------------------------------------------------------------------------------- /tests/036.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/036.phpt -------------------------------------------------------------------------------- /tests/037.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/037.phpt -------------------------------------------------------------------------------- /tests/038.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/038.phpt -------------------------------------------------------------------------------- /tests/039.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/039.phpt -------------------------------------------------------------------------------- /tests/040.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/040.phpt -------------------------------------------------------------------------------- /tests/041.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/041.phpt -------------------------------------------------------------------------------- /tests/042.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/042.phpt -------------------------------------------------------------------------------- /tests/043.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/043.phpt -------------------------------------------------------------------------------- /tests/044.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/044.phpt -------------------------------------------------------------------------------- /tests/045.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/045.phpt -------------------------------------------------------------------------------- /tests/046.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/046.phpt -------------------------------------------------------------------------------- /tests/047.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/047.phpt -------------------------------------------------------------------------------- /tests/048.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/048.phpt -------------------------------------------------------------------------------- /tests/049.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/049.phpt -------------------------------------------------------------------------------- /tests/050.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/050.phpt -------------------------------------------------------------------------------- /tests/051.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/051.phpt -------------------------------------------------------------------------------- /tests/052.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/052.phpt -------------------------------------------------------------------------------- /tests/053.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/053.phpt -------------------------------------------------------------------------------- /tests/054.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/054.phpt -------------------------------------------------------------------------------- /tests/055.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/055.phpt -------------------------------------------------------------------------------- /tests/056.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/056.phpt -------------------------------------------------------------------------------- /tests/057.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/057.phpt -------------------------------------------------------------------------------- /tests/058.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/058.phpt -------------------------------------------------------------------------------- /tests/059.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/059.phpt -------------------------------------------------------------------------------- /tests/060.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/060.phpt -------------------------------------------------------------------------------- /tests/061.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/061.phpt -------------------------------------------------------------------------------- /tests/062.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/062.phpt -------------------------------------------------------------------------------- /tests/063.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/063.phpt -------------------------------------------------------------------------------- /tests/064.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/064.phpt -------------------------------------------------------------------------------- /tests/065.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/065.phpt -------------------------------------------------------------------------------- /tests/066.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/066.phpt -------------------------------------------------------------------------------- /tests/067.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/067.phpt -------------------------------------------------------------------------------- /tests/068.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/068.phpt -------------------------------------------------------------------------------- /tests/069.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/069.phpt -------------------------------------------------------------------------------- /tests/070.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/070.phpt -------------------------------------------------------------------------------- /tests/071.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/071.phpt -------------------------------------------------------------------------------- /tests/072.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/072.phpt -------------------------------------------------------------------------------- /tests/073.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/073.phpt -------------------------------------------------------------------------------- /tests/074.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/074.phpt -------------------------------------------------------------------------------- /tests/075.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/075.phpt -------------------------------------------------------------------------------- /tests/076.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/076.phpt -------------------------------------------------------------------------------- /tests/077.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/077.phpt -------------------------------------------------------------------------------- /tests/078.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/078.phpt -------------------------------------------------------------------------------- /tests/079.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/079.phpt -------------------------------------------------------------------------------- /tests/080.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/080.phpt -------------------------------------------------------------------------------- /tests/081.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/081.phpt -------------------------------------------------------------------------------- /tests/082.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/082.phpt -------------------------------------------------------------------------------- /tests/083.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/083.phpt -------------------------------------------------------------------------------- /tests/084.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/084.phpt -------------------------------------------------------------------------------- /tests/085.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/085.phpt -------------------------------------------------------------------------------- /tests/086.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/086.phpt -------------------------------------------------------------------------------- /tests/087.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/087.phpt -------------------------------------------------------------------------------- /tests/088.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/088.phpt -------------------------------------------------------------------------------- /tests/089.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/089.phpt -------------------------------------------------------------------------------- /tests/090.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/090.phpt -------------------------------------------------------------------------------- /tests/091.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/091.phpt -------------------------------------------------------------------------------- /tests/092.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/092.phpt -------------------------------------------------------------------------------- /tests/093.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/093.phpt -------------------------------------------------------------------------------- /tests/094.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/094.phpt -------------------------------------------------------------------------------- /tests/095.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/095.phpt -------------------------------------------------------------------------------- /tests/096.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/096.phpt -------------------------------------------------------------------------------- /tests/097.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/097.phpt -------------------------------------------------------------------------------- /tests/098.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/098.phpt -------------------------------------------------------------------------------- /tests/099.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/099.phpt -------------------------------------------------------------------------------- /tests/100.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/100.phpt -------------------------------------------------------------------------------- /tests/101.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/101.phpt -------------------------------------------------------------------------------- /tests/102.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/102.phpt -------------------------------------------------------------------------------- /tests/103.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/103.phpt -------------------------------------------------------------------------------- /tests/104.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/104.phpt -------------------------------------------------------------------------------- /tests/105.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/105.phpt -------------------------------------------------------------------------------- /tests/106.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/106.phpt -------------------------------------------------------------------------------- /tests/107.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/107.phpt -------------------------------------------------------------------------------- /tests/108.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/108.phpt -------------------------------------------------------------------------------- /tests/109.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/109.phpt -------------------------------------------------------------------------------- /tests/110.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/110.phpt -------------------------------------------------------------------------------- /tests/bug61493.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/bug61493.phpt -------------------------------------------------------------------------------- /tests/bug62702.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/bug62702.phpt -------------------------------------------------------------------------------- /tests/bug63381.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/bug63381.phpt -------------------------------------------------------------------------------- /tests/bug63438.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/bug63438.phpt -------------------------------------------------------------------------------- /tests/bug63900.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/bug63900.phpt -------------------------------------------------------------------------------- /tests/bug70913.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/bug70913.phpt -------------------------------------------------------------------------------- /tests/bug76213.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/bug76213.phpt -------------------------------------------------------------------------------- /tests/bug76217.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/bug76217.phpt -------------------------------------------------------------------------------- /tests/build.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/build.inc -------------------------------------------------------------------------------- /tests/issue134.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue134.phpt -------------------------------------------------------------------------------- /tests/issue163.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue163.phpt -------------------------------------------------------------------------------- /tests/issue231.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue231.phpt -------------------------------------------------------------------------------- /tests/issue232.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue232.phpt -------------------------------------------------------------------------------- /tests/issue297.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue297.phpt -------------------------------------------------------------------------------- /tests/issue303.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue303.phpt -------------------------------------------------------------------------------- /tests/issue311.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue311.phpt -------------------------------------------------------------------------------- /tests/issue415.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue415.phpt -------------------------------------------------------------------------------- /tests/issue420.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue420.phpt -------------------------------------------------------------------------------- /tests/issue468.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue468.phpt -------------------------------------------------------------------------------- /tests/issue469.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue469.phpt -------------------------------------------------------------------------------- /tests/issue513.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue513.phpt -------------------------------------------------------------------------------- /tests/issue518.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue518.phpt -------------------------------------------------------------------------------- /tests/issue530.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue530.phpt -------------------------------------------------------------------------------- /tests/issue535.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/issue535.phpt -------------------------------------------------------------------------------- /tests/multi-section.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/multi-section.ini -------------------------------------------------------------------------------- /tests/simple.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/simple.ini -------------------------------------------------------------------------------- /tests/system.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tests/system.ini -------------------------------------------------------------------------------- /tools/cg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/cg/README.md -------------------------------------------------------------------------------- /tools/cg/templates/.htaccess.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/cg/templates/.htaccess.tpl -------------------------------------------------------------------------------- /tools/cg/templates/application/Bootstrap.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/cg/templates/application/Bootstrap.php.tpl -------------------------------------------------------------------------------- /tools/cg/templates/application/controllers/Error.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/cg/templates/application/controllers/Error.php.tpl -------------------------------------------------------------------------------- /tools/cg/templates/application/controllers/Index.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/cg/templates/application/controllers/Index.php.tpl -------------------------------------------------------------------------------- /tools/cg/templates/application/library/readme.txt.tpl: -------------------------------------------------------------------------------- 1 | 项目库文件放在这里 -------------------------------------------------------------------------------- /tools/cg/templates/application/models/Sample.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/cg/templates/application/models/Sample.php.tpl -------------------------------------------------------------------------------- /tools/cg/templates/application/plugins/Sample.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/cg/templates/application/plugins/Sample.php.tpl -------------------------------------------------------------------------------- /tools/cg/templates/application/views/error/error.phtml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/cg/templates/application/views/error/error.phtml.tpl -------------------------------------------------------------------------------- /tools/cg/templates/application/views/index/index.phtml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/cg/templates/application/views/index/index.phtml.tpl -------------------------------------------------------------------------------- /tools/cg/templates/conf/application.ini.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/cg/templates/conf/application.ini.tpl -------------------------------------------------------------------------------- /tools/cg/templates/index.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/cg/templates/index.php.tpl -------------------------------------------------------------------------------- /tools/cg/templates/readme.txt.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/cg/templates/readme.txt.tpl -------------------------------------------------------------------------------- /tools/cg/yaf_cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/cg/yaf_cg -------------------------------------------------------------------------------- /tools/yaf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/yaf.php -------------------------------------------------------------------------------- /tools/yaf_classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/tools/yaf_classes.php -------------------------------------------------------------------------------- /travis/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/travis/compile.sh -------------------------------------------------------------------------------- /travis/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/travis/run-test.sh -------------------------------------------------------------------------------- /views/yaf_view_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/views/yaf_view_interface.c -------------------------------------------------------------------------------- /views/yaf_view_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/views/yaf_view_interface.h -------------------------------------------------------------------------------- /views/yaf_view_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/views/yaf_view_simple.c -------------------------------------------------------------------------------- /views/yaf_view_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/views/yaf_view_simple.h -------------------------------------------------------------------------------- /yaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf.c -------------------------------------------------------------------------------- /yaf.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf.dsp -------------------------------------------------------------------------------- /yaf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf.php -------------------------------------------------------------------------------- /yaf_action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_action.c -------------------------------------------------------------------------------- /yaf_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_action.h -------------------------------------------------------------------------------- /yaf_application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_application.c -------------------------------------------------------------------------------- /yaf_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_application.h -------------------------------------------------------------------------------- /yaf_application.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_application.stub.php -------------------------------------------------------------------------------- /yaf_application_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_application_arginfo.h -------------------------------------------------------------------------------- /yaf_application_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_application_legacy_arginfo.h -------------------------------------------------------------------------------- /yaf_bootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_bootstrap.c -------------------------------------------------------------------------------- /yaf_bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_bootstrap.h -------------------------------------------------------------------------------- /yaf_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_config.c -------------------------------------------------------------------------------- /yaf_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_config.h -------------------------------------------------------------------------------- /yaf_config.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_config.stub.php -------------------------------------------------------------------------------- /yaf_config_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_config_arginfo.h -------------------------------------------------------------------------------- /yaf_config_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_config_legacy_arginfo.h -------------------------------------------------------------------------------- /yaf_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_controller.c -------------------------------------------------------------------------------- /yaf_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_controller.h -------------------------------------------------------------------------------- /yaf_controller.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_controller.stub.php -------------------------------------------------------------------------------- /yaf_controller_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_controller_arginfo.h -------------------------------------------------------------------------------- /yaf_controller_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_controller_legacy_arginfo.h -------------------------------------------------------------------------------- /yaf_dispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_dispatcher.c -------------------------------------------------------------------------------- /yaf_dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_dispatcher.h -------------------------------------------------------------------------------- /yaf_dispatcher.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_dispatcher.stub.php -------------------------------------------------------------------------------- /yaf_dispatcher_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_dispatcher_arginfo.h -------------------------------------------------------------------------------- /yaf_dispatcher_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_dispatcher_legacy_arginfo.h -------------------------------------------------------------------------------- /yaf_exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_exception.c -------------------------------------------------------------------------------- /yaf_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_exception.h -------------------------------------------------------------------------------- /yaf_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_loader.c -------------------------------------------------------------------------------- /yaf_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_loader.h -------------------------------------------------------------------------------- /yaf_loader.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_loader.stub.php -------------------------------------------------------------------------------- /yaf_loader_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_loader_arginfo.h -------------------------------------------------------------------------------- /yaf_loader_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_loader_legacy_arginfo.h -------------------------------------------------------------------------------- /yaf_logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_logo.h -------------------------------------------------------------------------------- /yaf_namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_namespace.h -------------------------------------------------------------------------------- /yaf_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_plugin.c -------------------------------------------------------------------------------- /yaf_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_plugin.h -------------------------------------------------------------------------------- /yaf_plugin.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_plugin.stub.php -------------------------------------------------------------------------------- /yaf_plugin_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_plugin_arginfo.h -------------------------------------------------------------------------------- /yaf_registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_registry.c -------------------------------------------------------------------------------- /yaf_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_registry.h -------------------------------------------------------------------------------- /yaf_registry.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_registry.stub.php -------------------------------------------------------------------------------- /yaf_registry_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_registry_arginfo.h -------------------------------------------------------------------------------- /yaf_registry_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_registry_legacy_arginfo.h -------------------------------------------------------------------------------- /yaf_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_request.c -------------------------------------------------------------------------------- /yaf_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_request.h -------------------------------------------------------------------------------- /yaf_request.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_request.stub.php -------------------------------------------------------------------------------- /yaf_request_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_request_arginfo.h -------------------------------------------------------------------------------- /yaf_request_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_request_legacy_arginfo.h -------------------------------------------------------------------------------- /yaf_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_response.c -------------------------------------------------------------------------------- /yaf_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_response.h -------------------------------------------------------------------------------- /yaf_response.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_response.stub.php -------------------------------------------------------------------------------- /yaf_response_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_response_arginfo.h -------------------------------------------------------------------------------- /yaf_response_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_response_legacy_arginfo.h -------------------------------------------------------------------------------- /yaf_route.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_route.stub.php -------------------------------------------------------------------------------- /yaf_route_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_route_arginfo.h -------------------------------------------------------------------------------- /yaf_route_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_route_legacy_arginfo.h -------------------------------------------------------------------------------- /yaf_router.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_router.c -------------------------------------------------------------------------------- /yaf_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_router.h -------------------------------------------------------------------------------- /yaf_router.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_router.stub.php -------------------------------------------------------------------------------- /yaf_router_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_router_arginfo.h -------------------------------------------------------------------------------- /yaf_router_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_router_legacy_arginfo.h -------------------------------------------------------------------------------- /yaf_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_session.c -------------------------------------------------------------------------------- /yaf_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_session.h -------------------------------------------------------------------------------- /yaf_session.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_session.stub.php -------------------------------------------------------------------------------- /yaf_session_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_session_arginfo.h -------------------------------------------------------------------------------- /yaf_session_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_session_legacy_arginfo.h -------------------------------------------------------------------------------- /yaf_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_view.c -------------------------------------------------------------------------------- /yaf_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_view.h -------------------------------------------------------------------------------- /yaf_view.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_view.stub.php -------------------------------------------------------------------------------- /yaf_view_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_view_arginfo.h -------------------------------------------------------------------------------- /yaf_view_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laruence/yaf/HEAD/yaf_view_legacy_arginfo.h --------------------------------------------------------------------------------