├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── contactus.png ├── fend.png ├── init.php ├── nginx.conf ├── phpunit.sh ├── phpunit.xml ├── src ├── App │ ├── DBModel.php │ ├── DBNCModel.php │ └── RedisModel.php ├── Cache.php ├── Cache │ ├── Memcache.php │ └── Redis.php ├── CliFunc.php ├── Config.php ├── Console │ ├── BaseCommand.php │ └── Command.php ├── Db │ ├── Mysql.php │ ├── MysqlPDO.php │ └── SQLBuilder.php ├── Debug.php ├── Di.php ├── ElasticSearch │ └── ElasticSearch6.php ├── Env.php ├── Exception │ ├── BizException.php │ ├── ErrCode.php │ ├── ExitException.php │ ├── FendException.php │ └── SystemException.php ├── ExceptionHandle │ ├── ExceptionHandleInterface.php │ └── FendExceptionHandle.php ├── Fend.php ├── Filter.php ├── Funcs │ ├── FendArray.php │ ├── FendCheckdata.php │ ├── FendHttp.php │ ├── FendString.php │ └── FendTimer.php ├── Log.php ├── Log │ ├── EagleEye.php │ └── LogAgent.php ├── Logger.php ├── PHPTemplate.php ├── Process │ └── Manage.php ├── Queue.php ├── Queue │ ├── Exception.php │ └── RdKafka.php ├── Read.php ├── Redis │ └── RedisModel.php ├── Request.php ├── Response.php ├── Router │ ├── DefaultRouter.php │ ├── Dispatcher.php │ ├── FastRouter.php │ ├── Middleware │ │ ├── HttpRequestHandler.php │ │ ├── MiddlewareInterface.php │ │ └── RequestHandler.php │ ├── Router.php │ └── RouterException.php ├── RumValidate.php ├── Server │ ├── BaseServer.php │ ├── Dispatcher │ │ ├── BaseInterface.php │ │ └── Http.php │ ├── Table.php │ └── Task.php ├── Template.php ├── ValidateFilter.php ├── Validation.php └── Write.php ├── tests ├── app │ ├── Config │ │ ├── Console.php │ │ ├── Db.php │ │ ├── Fend.php │ │ ├── Memcache.php │ │ ├── Redis.php │ │ ├── RedisKey │ │ │ ├── Single.php │ │ │ └── Test │ │ │ │ └── Test.php │ │ └── Router.php │ └── Http │ │ └── Index.php ├── fend.sql ├── fend │ ├── App │ │ ├── DBNCModelTest.php │ │ ├── DemoDBNCModel.php │ │ ├── DemoDbModel.php │ │ └── dbModelTest.php │ ├── Cache │ │ ├── CacheTest.php │ │ ├── MemcacheTest.php │ │ └── redisTest.php │ ├── Config │ │ └── ConfigTest.php │ ├── Db │ │ ├── mysqlTest.php │ │ ├── mysqlpdoTest.php │ │ ├── readPrepareTest.php │ │ ├── readTest.php │ │ ├── sqlBuilderTest.php │ │ ├── writePrepareTest.php │ │ └── writeTest.php │ ├── Exception │ │ └── ErrorCodeTest.php │ ├── Redis │ │ ├── ModelTest.php │ │ ├── SingleModel.php │ │ └── TestModel.php │ ├── Router │ │ └── FastRouteTest.php │ └── Validator │ │ ├── rumvalidateTest.php │ │ ├── validatefilterTest.php │ │ └── validationTest.php └── init.php └── www └── index.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/composer.json -------------------------------------------------------------------------------- /contactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/contactus.png -------------------------------------------------------------------------------- /fend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/fend.png -------------------------------------------------------------------------------- /init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/init.php -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/nginx.conf -------------------------------------------------------------------------------- /phpunit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/phpunit.sh -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/App/DBModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/App/DBModel.php -------------------------------------------------------------------------------- /src/App/DBNCModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/App/DBNCModel.php -------------------------------------------------------------------------------- /src/App/RedisModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/App/RedisModel.php -------------------------------------------------------------------------------- /src/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Cache.php -------------------------------------------------------------------------------- /src/Cache/Memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Cache/Memcache.php -------------------------------------------------------------------------------- /src/Cache/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Cache/Redis.php -------------------------------------------------------------------------------- /src/CliFunc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/CliFunc.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/Console/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Console/BaseCommand.php -------------------------------------------------------------------------------- /src/Console/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Console/Command.php -------------------------------------------------------------------------------- /src/Db/Mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Db/Mysql.php -------------------------------------------------------------------------------- /src/Db/MysqlPDO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Db/MysqlPDO.php -------------------------------------------------------------------------------- /src/Db/SQLBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Db/SQLBuilder.php -------------------------------------------------------------------------------- /src/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Debug.php -------------------------------------------------------------------------------- /src/Di.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Di.php -------------------------------------------------------------------------------- /src/ElasticSearch/ElasticSearch6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/ElasticSearch/ElasticSearch6.php -------------------------------------------------------------------------------- /src/Env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Env.php -------------------------------------------------------------------------------- /src/Exception/BizException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Exception/BizException.php -------------------------------------------------------------------------------- /src/Exception/ErrCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Exception/ErrCode.php -------------------------------------------------------------------------------- /src/Exception/ExitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Exception/ExitException.php -------------------------------------------------------------------------------- /src/Exception/FendException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Exception/FendException.php -------------------------------------------------------------------------------- /src/Exception/SystemException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Exception/SystemException.php -------------------------------------------------------------------------------- /src/ExceptionHandle/ExceptionHandleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/ExceptionHandle/ExceptionHandleInterface.php -------------------------------------------------------------------------------- /src/ExceptionHandle/FendExceptionHandle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/ExceptionHandle/FendExceptionHandle.php -------------------------------------------------------------------------------- /src/Fend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Fend.php -------------------------------------------------------------------------------- /src/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Filter.php -------------------------------------------------------------------------------- /src/Funcs/FendArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Funcs/FendArray.php -------------------------------------------------------------------------------- /src/Funcs/FendCheckdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Funcs/FendCheckdata.php -------------------------------------------------------------------------------- /src/Funcs/FendHttp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Funcs/FendHttp.php -------------------------------------------------------------------------------- /src/Funcs/FendString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Funcs/FendString.php -------------------------------------------------------------------------------- /src/Funcs/FendTimer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Funcs/FendTimer.php -------------------------------------------------------------------------------- /src/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Log.php -------------------------------------------------------------------------------- /src/Log/EagleEye.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Log/EagleEye.php -------------------------------------------------------------------------------- /src/Log/LogAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Log/LogAgent.php -------------------------------------------------------------------------------- /src/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Logger.php -------------------------------------------------------------------------------- /src/PHPTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/PHPTemplate.php -------------------------------------------------------------------------------- /src/Process/Manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Process/Manage.php -------------------------------------------------------------------------------- /src/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Queue.php -------------------------------------------------------------------------------- /src/Queue/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Queue/Exception.php -------------------------------------------------------------------------------- /src/Queue/RdKafka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Queue/RdKafka.php -------------------------------------------------------------------------------- /src/Read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Read.php -------------------------------------------------------------------------------- /src/Redis/RedisModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Redis/RedisModel.php -------------------------------------------------------------------------------- /src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Request.php -------------------------------------------------------------------------------- /src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Response.php -------------------------------------------------------------------------------- /src/Router/DefaultRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Router/DefaultRouter.php -------------------------------------------------------------------------------- /src/Router/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Router/Dispatcher.php -------------------------------------------------------------------------------- /src/Router/FastRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Router/FastRouter.php -------------------------------------------------------------------------------- /src/Router/Middleware/HttpRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Router/Middleware/HttpRequestHandler.php -------------------------------------------------------------------------------- /src/Router/Middleware/MiddlewareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Router/Middleware/MiddlewareInterface.php -------------------------------------------------------------------------------- /src/Router/Middleware/RequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Router/Middleware/RequestHandler.php -------------------------------------------------------------------------------- /src/Router/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Router/Router.php -------------------------------------------------------------------------------- /src/Router/RouterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Router/RouterException.php -------------------------------------------------------------------------------- /src/RumValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/RumValidate.php -------------------------------------------------------------------------------- /src/Server/BaseServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Server/BaseServer.php -------------------------------------------------------------------------------- /src/Server/Dispatcher/BaseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Server/Dispatcher/BaseInterface.php -------------------------------------------------------------------------------- /src/Server/Dispatcher/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Server/Dispatcher/Http.php -------------------------------------------------------------------------------- /src/Server/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Server/Table.php -------------------------------------------------------------------------------- /src/Server/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Server/Task.php -------------------------------------------------------------------------------- /src/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Template.php -------------------------------------------------------------------------------- /src/ValidateFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/ValidateFilter.php -------------------------------------------------------------------------------- /src/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Validation.php -------------------------------------------------------------------------------- /src/Write.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/src/Write.php -------------------------------------------------------------------------------- /tests/app/Config/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/app/Config/Console.php -------------------------------------------------------------------------------- /tests/app/Config/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/app/Config/Db.php -------------------------------------------------------------------------------- /tests/app/Config/Fend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/app/Config/Fend.php -------------------------------------------------------------------------------- /tests/app/Config/Memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/app/Config/Memcache.php -------------------------------------------------------------------------------- /tests/app/Config/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/app/Config/Redis.php -------------------------------------------------------------------------------- /tests/app/Config/RedisKey/Single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/app/Config/RedisKey/Single.php -------------------------------------------------------------------------------- /tests/app/Config/RedisKey/Test/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/app/Config/RedisKey/Test/Test.php -------------------------------------------------------------------------------- /tests/app/Config/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/app/Config/Router.php -------------------------------------------------------------------------------- /tests/app/Http/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/app/Http/Index.php -------------------------------------------------------------------------------- /tests/fend.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend.sql -------------------------------------------------------------------------------- /tests/fend/App/DBNCModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/App/DBNCModelTest.php -------------------------------------------------------------------------------- /tests/fend/App/DemoDBNCModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/App/DemoDBNCModel.php -------------------------------------------------------------------------------- /tests/fend/App/DemoDbModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/App/DemoDbModel.php -------------------------------------------------------------------------------- /tests/fend/App/dbModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/App/dbModelTest.php -------------------------------------------------------------------------------- /tests/fend/Cache/CacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Cache/CacheTest.php -------------------------------------------------------------------------------- /tests/fend/Cache/MemcacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Cache/MemcacheTest.php -------------------------------------------------------------------------------- /tests/fend/Cache/redisTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Cache/redisTest.php -------------------------------------------------------------------------------- /tests/fend/Config/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Config/ConfigTest.php -------------------------------------------------------------------------------- /tests/fend/Db/mysqlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Db/mysqlTest.php -------------------------------------------------------------------------------- /tests/fend/Db/mysqlpdoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Db/mysqlpdoTest.php -------------------------------------------------------------------------------- /tests/fend/Db/readPrepareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Db/readPrepareTest.php -------------------------------------------------------------------------------- /tests/fend/Db/readTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Db/readTest.php -------------------------------------------------------------------------------- /tests/fend/Db/sqlBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Db/sqlBuilderTest.php -------------------------------------------------------------------------------- /tests/fend/Db/writePrepareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Db/writePrepareTest.php -------------------------------------------------------------------------------- /tests/fend/Db/writeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Db/writeTest.php -------------------------------------------------------------------------------- /tests/fend/Exception/ErrorCodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Exception/ErrorCodeTest.php -------------------------------------------------------------------------------- /tests/fend/Redis/ModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Redis/ModelTest.php -------------------------------------------------------------------------------- /tests/fend/Redis/SingleModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Redis/SingleModel.php -------------------------------------------------------------------------------- /tests/fend/Redis/TestModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Redis/TestModel.php -------------------------------------------------------------------------------- /tests/fend/Router/FastRouteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Router/FastRouteTest.php -------------------------------------------------------------------------------- /tests/fend/Validator/rumvalidateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Validator/rumvalidateTest.php -------------------------------------------------------------------------------- /tests/fend/Validator/validatefilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Validator/validatefilterTest.php -------------------------------------------------------------------------------- /tests/fend/Validator/validationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/fend/Validator/validationTest.php -------------------------------------------------------------------------------- /tests/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/tests/init.php -------------------------------------------------------------------------------- /www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tal-tech/fend/HEAD/www/index.php --------------------------------------------------------------------------------