├── .gitattributes ├── .gitignore ├── Applications ├── HttpServer │ ├── HttpServer.php │ ├── config │ │ ├── autoload.php │ │ ├── config.php │ │ ├── database.php │ │ ├── mimes.php │ │ └── redis.php │ ├── controllers │ │ └── Test.php │ ├── core │ │ └── Base_Controller.php │ ├── libraries │ │ └── Doer │ │ │ └── DoerError.php │ ├── start_http_server.php │ └── system │ │ ├── core │ │ ├── Common.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Input.php │ │ ├── Loader.php │ │ ├── Log.php │ │ ├── Model.php │ │ ├── Output.php │ │ └── Security.php │ │ └── database │ │ ├── DB.php │ │ ├── DB_active_rec.php │ │ ├── DB_cache.php │ │ ├── DB_driver.php │ │ ├── DB_forge.php │ │ ├── DB_query_builder.php │ │ ├── DB_result.php │ │ ├── DB_utility.php │ │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── ibase │ │ │ ├── ibase_driver.php │ │ │ ├── ibase_forge.php │ │ │ ├── ibase_result.php │ │ │ ├── ibase_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ ├── pdo_utility.php │ │ │ └── subdrivers │ │ │ │ ├── index.html │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ └── pdo_sqlsrv_forge.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ ├── sqlite3_driver.php │ │ │ ├── sqlite3_forge.php │ │ │ ├── sqlite3_result.php │ │ │ └── sqlite3_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ │ └── index.html └── Logger │ └── start_logger.php ├── GatewayWorker ├── BusinessWorker.php ├── Gateway.php ├── Lib │ ├── Context.php │ ├── Db.php │ ├── DbConnection.php │ └── Gateway.php ├── Protocols │ └── GatewayProtocol.php └── Register.php ├── Logger ├── Autoloader.php ├── Client.php ├── Monolog │ ├── ErrorHandler.php │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FluentdFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── MongoDBFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ └── WildfireFormatter.php │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── Curl │ │ │ └── Util.php │ │ ├── DeduplicationHandler.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticSearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FleepHookHandler.php │ │ ├── FlowdockHandler.php │ │ ├── FormattableHandlerInterface.php │ │ ├── FormattableHandlerTrait.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── Handler.php │ │ ├── HandlerInterface.php │ │ ├── HandlerWrapper.php │ │ ├── HipChatHandler.php │ │ ├── IFTTTHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NullHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── ProcessableHandlerInterface.php │ │ ├── ProcessableHandlerTrait.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RavenHandler.php │ │ ├── RedisHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── SlackHandler.php │ │ ├── SocketHandler.php │ │ ├── StreamHandler.php │ │ ├── SwiftMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TestHandler.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ ├── Logger.php │ ├── Processor │ │ ├── GitProcessor.php │ │ ├── IntrospectionProcessor.php │ │ ├── MemoryPeakUsageProcessor.php │ │ ├── MemoryProcessor.php │ │ ├── MemoryUsageProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ └── Registry.php ├── Psr │ └── Log │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ └── LoggerInterface.php └── Server.php ├── README.md ├── Workerman ├── .gitignore ├── Autoloader.php ├── Connection │ ├── AsyncTcpConnection.php │ ├── ConnectionInterface.php │ ├── TcpConnection.php │ └── UdpConnection.php ├── Events │ ├── Ev.php │ ├── Event.php │ ├── EventInterface.php │ ├── Libevent.php │ └── Select.php ├── Lib │ ├── Constants.php │ └── Timer.php ├── MIT-LICENSE.txt ├── Protocols │ ├── Frame.php │ ├── Http.php │ ├── Http │ │ └── mime.types │ ├── ProtocolInterface.php │ ├── Text.php │ ├── Websocket.php │ └── Ws.php ├── README.md ├── WebServer.php ├── Worker.php └── composer.json └── start.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/.gitignore -------------------------------------------------------------------------------- /Applications/HttpServer/HttpServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/HttpServer.php -------------------------------------------------------------------------------- /Applications/HttpServer/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/config/autoload.php -------------------------------------------------------------------------------- /Applications/HttpServer/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/config/config.php -------------------------------------------------------------------------------- /Applications/HttpServer/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/config/database.php -------------------------------------------------------------------------------- /Applications/HttpServer/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/config/mimes.php -------------------------------------------------------------------------------- /Applications/HttpServer/config/redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/config/redis.php -------------------------------------------------------------------------------- /Applications/HttpServer/controllers/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/controllers/Test.php -------------------------------------------------------------------------------- /Applications/HttpServer/core/Base_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/core/Base_Controller.php -------------------------------------------------------------------------------- /Applications/HttpServer/libraries/Doer/DoerError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/libraries/Doer/DoerError.php -------------------------------------------------------------------------------- /Applications/HttpServer/start_http_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/start_http_server.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/core/Common.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/core/Config.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/core/Controller.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/core/Input.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/core/Loader.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/core/Log.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/core/Model.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/core/Output.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/core/Security.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/DB.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/DB_active_rec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/DB_active_rec.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/DB_cache.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/DB_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/DB_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/DB_query_builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/DB_query_builder.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/DB_result.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/DB_utility.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/ibase/ibase_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/ibase/ibase_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/ibase/ibase_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/ibase/ibase_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/ibase/ibase_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/ibase/ibase_result.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/ibase/ibase_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/ibase/ibase_utility.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/ibase/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_informix_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_informix_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlite3/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlite3/sqlite3_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlite3/sqlite3_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlite3/sqlite3_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlite3/sqlite3_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlite3/sqlite3_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlite3/sqlite3_result.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlite3/sqlite3_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlite3/sqlite3_utility.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /Applications/HttpServer/system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/HttpServer/system/database/index.html -------------------------------------------------------------------------------- /Applications/Logger/start_logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Applications/Logger/start_logger.php -------------------------------------------------------------------------------- /GatewayWorker/BusinessWorker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/GatewayWorker/BusinessWorker.php -------------------------------------------------------------------------------- /GatewayWorker/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/GatewayWorker/Gateway.php -------------------------------------------------------------------------------- /GatewayWorker/Lib/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/GatewayWorker/Lib/Context.php -------------------------------------------------------------------------------- /GatewayWorker/Lib/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/GatewayWorker/Lib/Db.php -------------------------------------------------------------------------------- /GatewayWorker/Lib/DbConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/GatewayWorker/Lib/DbConnection.php -------------------------------------------------------------------------------- /GatewayWorker/Lib/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/GatewayWorker/Lib/Gateway.php -------------------------------------------------------------------------------- /GatewayWorker/Protocols/GatewayProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/GatewayWorker/Protocols/GatewayProtocol.php -------------------------------------------------------------------------------- /GatewayWorker/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/GatewayWorker/Register.php -------------------------------------------------------------------------------- /Logger/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Autoloader.php -------------------------------------------------------------------------------- /Logger/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Client.php -------------------------------------------------------------------------------- /Logger/Monolog/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/ErrorHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/ChromePHPFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/ChromePHPFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/ElasticaFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/ElasticaFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/FlowdockFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/FlowdockFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/FluentdFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/FluentdFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/FormatterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/FormatterInterface.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/GelfMessageFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/GelfMessageFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/HtmlFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/HtmlFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/JsonFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/JsonFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/LineFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/LineFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/LogglyFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/LogglyFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/LogstashFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/LogstashFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/MongoDBFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/MongoDBFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/NormalizerFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/NormalizerFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/ScalarFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/ScalarFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Formatter/WildfireFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Formatter/WildfireFormatter.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/AbstractHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/AbstractHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/AbstractProcessingHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/AbstractProcessingHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/AbstractSyslogHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/AbstractSyslogHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/AmqpHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/AmqpHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/BrowserConsoleHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/BrowserConsoleHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/BufferHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/BufferHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/ChromePHPHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/ChromePHPHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/CouchDBHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/CouchDBHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/CubeHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/CubeHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/Curl/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/Curl/Util.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/DeduplicationHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/DeduplicationHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/DoctrineCouchDBHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/DoctrineCouchDBHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/DynamoDbHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/DynamoDbHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/ElasticSearchHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/ElasticSearchHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/ErrorLogHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/ErrorLogHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/FilterHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/FilterHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/FingersCrossedHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/FingersCrossedHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/FirePHPHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/FirePHPHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/FleepHookHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/FleepHookHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/FlowdockHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/FlowdockHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/FormattableHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/FormattableHandlerInterface.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/FormattableHandlerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/FormattableHandlerTrait.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/GelfHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/GelfHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/GroupHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/GroupHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/Handler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/HandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/HandlerInterface.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/HandlerWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/HandlerWrapper.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/HipChatHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/HipChatHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/IFTTTHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/IFTTTHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/LogEntriesHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/LogEntriesHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/LogglyHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/LogglyHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/MailHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/MailHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/MandrillHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/MandrillHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/MissingExtensionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/MissingExtensionException.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/MongoDBHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/MongoDBHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/NativeMailerHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/NativeMailerHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/NewRelicHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/NewRelicHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/NullHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/NullHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/PHPConsoleHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/PHPConsoleHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/ProcessableHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/ProcessableHandlerInterface.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/ProcessableHandlerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/ProcessableHandlerTrait.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/PsrHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/PsrHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/PushoverHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/PushoverHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/RavenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/RavenHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/RedisHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/RedisHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/RollbarHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/RollbarHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/RotatingFileHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/RotatingFileHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/SamplingHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/SamplingHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/SlackHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/SlackHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/SocketHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/SocketHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/StreamHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/StreamHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/SwiftMailerHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/SwiftMailerHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/SyslogHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/SyslogHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/SyslogUdp/UdpSocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/SyslogUdp/UdpSocket.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/SyslogUdpHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/SyslogUdpHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/TestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/TestHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/WhatFailureGroupHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/WhatFailureGroupHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Handler/ZendMonitorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Handler/ZendMonitorHandler.php -------------------------------------------------------------------------------- /Logger/Monolog/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Logger.php -------------------------------------------------------------------------------- /Logger/Monolog/Processor/GitProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Processor/GitProcessor.php -------------------------------------------------------------------------------- /Logger/Monolog/Processor/IntrospectionProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Processor/IntrospectionProcessor.php -------------------------------------------------------------------------------- /Logger/Monolog/Processor/MemoryPeakUsageProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Processor/MemoryPeakUsageProcessor.php -------------------------------------------------------------------------------- /Logger/Monolog/Processor/MemoryProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Processor/MemoryProcessor.php -------------------------------------------------------------------------------- /Logger/Monolog/Processor/MemoryUsageProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Processor/MemoryUsageProcessor.php -------------------------------------------------------------------------------- /Logger/Monolog/Processor/ProcessIdProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Processor/ProcessIdProcessor.php -------------------------------------------------------------------------------- /Logger/Monolog/Processor/PsrLogMessageProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Processor/PsrLogMessageProcessor.php -------------------------------------------------------------------------------- /Logger/Monolog/Processor/TagProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Processor/TagProcessor.php -------------------------------------------------------------------------------- /Logger/Monolog/Processor/UidProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Processor/UidProcessor.php -------------------------------------------------------------------------------- /Logger/Monolog/Processor/WebProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Processor/WebProcessor.php -------------------------------------------------------------------------------- /Logger/Monolog/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Monolog/Registry.php -------------------------------------------------------------------------------- /Logger/Psr/Log/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Psr/Log/LogLevel.php -------------------------------------------------------------------------------- /Logger/Psr/Log/LoggerAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Psr/Log/LoggerAwareInterface.php -------------------------------------------------------------------------------- /Logger/Psr/Log/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Psr/Log/LoggerInterface.php -------------------------------------------------------------------------------- /Logger/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Logger/Server.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/README.md -------------------------------------------------------------------------------- /Workerman/.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | .buildpath 3 | .project 4 | .settings 5 | .idea -------------------------------------------------------------------------------- /Workerman/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Autoloader.php -------------------------------------------------------------------------------- /Workerman/Connection/AsyncTcpConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Connection/AsyncTcpConnection.php -------------------------------------------------------------------------------- /Workerman/Connection/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Connection/ConnectionInterface.php -------------------------------------------------------------------------------- /Workerman/Connection/TcpConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Connection/TcpConnection.php -------------------------------------------------------------------------------- /Workerman/Connection/UdpConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Connection/UdpConnection.php -------------------------------------------------------------------------------- /Workerman/Events/Ev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Events/Ev.php -------------------------------------------------------------------------------- /Workerman/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Events/Event.php -------------------------------------------------------------------------------- /Workerman/Events/EventInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Events/EventInterface.php -------------------------------------------------------------------------------- /Workerman/Events/Libevent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Events/Libevent.php -------------------------------------------------------------------------------- /Workerman/Events/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Events/Select.php -------------------------------------------------------------------------------- /Workerman/Lib/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Lib/Constants.php -------------------------------------------------------------------------------- /Workerman/Lib/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Lib/Timer.php -------------------------------------------------------------------------------- /Workerman/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/MIT-LICENSE.txt -------------------------------------------------------------------------------- /Workerman/Protocols/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Protocols/Frame.php -------------------------------------------------------------------------------- /Workerman/Protocols/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Protocols/Http.php -------------------------------------------------------------------------------- /Workerman/Protocols/Http/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Protocols/Http/mime.types -------------------------------------------------------------------------------- /Workerman/Protocols/ProtocolInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Protocols/ProtocolInterface.php -------------------------------------------------------------------------------- /Workerman/Protocols/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Protocols/Text.php -------------------------------------------------------------------------------- /Workerman/Protocols/Websocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Protocols/Websocket.php -------------------------------------------------------------------------------- /Workerman/Protocols/Ws.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Protocols/Ws.php -------------------------------------------------------------------------------- /Workerman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/README.md -------------------------------------------------------------------------------- /Workerman/WebServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/WebServer.php -------------------------------------------------------------------------------- /Workerman/Worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/Worker.php -------------------------------------------------------------------------------- /Workerman/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/Workerman/composer.json -------------------------------------------------------------------------------- /start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmtbe/CI-worker/HEAD/start.php --------------------------------------------------------------------------------