From 7ac4371989ac19ebbb753402319882c9c49d32dd Mon Sep 17 00:00:00 2001 From: marvin-borner@live.com Date: Sat, 14 Apr 2018 19:38:31 +0200 Subject: Began login system integration --- assets/php/vendor/react/socket/.gitignore | 0 assets/php/vendor/react/socket/.travis.yml | 0 assets/php/vendor/react/socket/CHANGELOG.md | 0 assets/php/vendor/react/socket/LICENSE | 0 assets/php/vendor/react/socket/README.md | 0 assets/php/vendor/react/socket/composer.json | 0 assets/php/vendor/react/socket/examples/01-echo-server.php | 0 assets/php/vendor/react/socket/examples/02-chat-server.php | 0 assets/php/vendor/react/socket/examples/03-http-server.php | 0 assets/php/vendor/react/socket/examples/11-http-client.php | 0 assets/php/vendor/react/socket/examples/12-https-client.php | 0 assets/php/vendor/react/socket/examples/21-netcat-client.php | 0 assets/php/vendor/react/socket/examples/22-http-client.php | 0 assets/php/vendor/react/socket/examples/91-benchmark-server.php | 0 assets/php/vendor/react/socket/examples/99-generate-self-signed.php | 0 assets/php/vendor/react/socket/examples/localhost.pem | 0 assets/php/vendor/react/socket/examples/localhost_swordfish.pem | 0 assets/php/vendor/react/socket/phpunit.xml.dist | 0 assets/php/vendor/react/socket/src/Connection.php | 0 assets/php/vendor/react/socket/src/ConnectionInterface.php | 0 assets/php/vendor/react/socket/src/Connector.php | 0 assets/php/vendor/react/socket/src/ConnectorInterface.php | 0 assets/php/vendor/react/socket/src/DnsConnector.php | 0 assets/php/vendor/react/socket/src/FixedUriConnector.php | 0 assets/php/vendor/react/socket/src/LimitingServer.php | 0 assets/php/vendor/react/socket/src/SecureConnector.php | 0 assets/php/vendor/react/socket/src/SecureServer.php | 0 assets/php/vendor/react/socket/src/Server.php | 0 assets/php/vendor/react/socket/src/ServerInterface.php | 0 assets/php/vendor/react/socket/src/StreamEncryption.php | 0 assets/php/vendor/react/socket/src/TcpConnector.php | 0 assets/php/vendor/react/socket/src/TcpServer.php | 0 assets/php/vendor/react/socket/src/TimeoutConnector.php | 0 assets/php/vendor/react/socket/src/UnixConnector.php | 0 assets/php/vendor/react/socket/src/UnixServer.php | 0 assets/php/vendor/react/socket/tests/ConnectionTest.php | 0 assets/php/vendor/react/socket/tests/ConnectorTest.php | 0 assets/php/vendor/react/socket/tests/DnsConnectorTest.php | 0 assets/php/vendor/react/socket/tests/FixedUriConnectorTest.php | 0 assets/php/vendor/react/socket/tests/FunctionalConnectorTest.php | 0 assets/php/vendor/react/socket/tests/FunctionalSecureServerTest.php | 0 assets/php/vendor/react/socket/tests/FunctionalTcpServerTest.php | 0 assets/php/vendor/react/socket/tests/IntegrationTest.php | 0 assets/php/vendor/react/socket/tests/LimitingServerTest.php | 0 assets/php/vendor/react/socket/tests/SecureConnectorTest.php | 0 assets/php/vendor/react/socket/tests/SecureIntegrationTest.php | 0 assets/php/vendor/react/socket/tests/SecureServerTest.php | 0 assets/php/vendor/react/socket/tests/ServerTest.php | 0 assets/php/vendor/react/socket/tests/Stub/CallableStub.php | 0 assets/php/vendor/react/socket/tests/Stub/ConnectionStub.php | 0 assets/php/vendor/react/socket/tests/Stub/ServerStub.php | 0 assets/php/vendor/react/socket/tests/TcpConnectorTest.php | 0 assets/php/vendor/react/socket/tests/TcpServerTest.php | 0 assets/php/vendor/react/socket/tests/TestCase.php | 0 assets/php/vendor/react/socket/tests/TimeoutConnectorTest.php | 0 assets/php/vendor/react/socket/tests/UnixConnectorTest.php | 0 assets/php/vendor/react/socket/tests/UnixServerTest.php | 0 57 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 assets/php/vendor/react/socket/.gitignore mode change 100644 => 100755 assets/php/vendor/react/socket/.travis.yml mode change 100644 => 100755 assets/php/vendor/react/socket/CHANGELOG.md mode change 100644 => 100755 assets/php/vendor/react/socket/LICENSE mode change 100644 => 100755 assets/php/vendor/react/socket/README.md mode change 100644 => 100755 assets/php/vendor/react/socket/composer.json mode change 100644 => 100755 assets/php/vendor/react/socket/examples/01-echo-server.php mode change 100644 => 100755 assets/php/vendor/react/socket/examples/02-chat-server.php mode change 100644 => 100755 assets/php/vendor/react/socket/examples/03-http-server.php mode change 100644 => 100755 assets/php/vendor/react/socket/examples/11-http-client.php mode change 100644 => 100755 assets/php/vendor/react/socket/examples/12-https-client.php mode change 100644 => 100755 assets/php/vendor/react/socket/examples/21-netcat-client.php mode change 100644 => 100755 assets/php/vendor/react/socket/examples/22-http-client.php mode change 100644 => 100755 assets/php/vendor/react/socket/examples/91-benchmark-server.php mode change 100644 => 100755 assets/php/vendor/react/socket/examples/99-generate-self-signed.php mode change 100644 => 100755 assets/php/vendor/react/socket/examples/localhost.pem mode change 100644 => 100755 assets/php/vendor/react/socket/examples/localhost_swordfish.pem mode change 100644 => 100755 assets/php/vendor/react/socket/phpunit.xml.dist mode change 100644 => 100755 assets/php/vendor/react/socket/src/Connection.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/ConnectionInterface.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/Connector.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/ConnectorInterface.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/DnsConnector.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/FixedUriConnector.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/LimitingServer.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/SecureConnector.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/SecureServer.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/Server.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/ServerInterface.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/StreamEncryption.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/TcpConnector.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/TcpServer.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/TimeoutConnector.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/UnixConnector.php mode change 100644 => 100755 assets/php/vendor/react/socket/src/UnixServer.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/ConnectionTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/ConnectorTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/DnsConnectorTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/FixedUriConnectorTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/FunctionalConnectorTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/FunctionalSecureServerTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/FunctionalTcpServerTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/IntegrationTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/LimitingServerTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/SecureConnectorTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/SecureIntegrationTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/SecureServerTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/ServerTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/Stub/CallableStub.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/Stub/ConnectionStub.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/Stub/ServerStub.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/TcpConnectorTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/TcpServerTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/TestCase.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/TimeoutConnectorTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/UnixConnectorTest.php mode change 100644 => 100755 assets/php/vendor/react/socket/tests/UnixServerTest.php (limited to 'assets/php/vendor/react/socket') diff --git a/assets/php/vendor/react/socket/.gitignore b/assets/php/vendor/react/socket/.gitignore old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/.travis.yml b/assets/php/vendor/react/socket/.travis.yml old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/CHANGELOG.md b/assets/php/vendor/react/socket/CHANGELOG.md old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/LICENSE b/assets/php/vendor/react/socket/LICENSE old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/README.md b/assets/php/vendor/react/socket/README.md old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/composer.json b/assets/php/vendor/react/socket/composer.json old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/examples/01-echo-server.php b/assets/php/vendor/react/socket/examples/01-echo-server.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/examples/02-chat-server.php b/assets/php/vendor/react/socket/examples/02-chat-server.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/examples/03-http-server.php b/assets/php/vendor/react/socket/examples/03-http-server.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/examples/11-http-client.php b/assets/php/vendor/react/socket/examples/11-http-client.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/examples/12-https-client.php b/assets/php/vendor/react/socket/examples/12-https-client.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/examples/21-netcat-client.php b/assets/php/vendor/react/socket/examples/21-netcat-client.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/examples/22-http-client.php b/assets/php/vendor/react/socket/examples/22-http-client.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/examples/91-benchmark-server.php b/assets/php/vendor/react/socket/examples/91-benchmark-server.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/examples/99-generate-self-signed.php b/assets/php/vendor/react/socket/examples/99-generate-self-signed.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/examples/localhost.pem b/assets/php/vendor/react/socket/examples/localhost.pem old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/examples/localhost_swordfish.pem b/assets/php/vendor/react/socket/examples/localhost_swordfish.pem old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/phpunit.xml.dist b/assets/php/vendor/react/socket/phpunit.xml.dist old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/Connection.php b/assets/php/vendor/react/socket/src/Connection.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/ConnectionInterface.php b/assets/php/vendor/react/socket/src/ConnectionInterface.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/Connector.php b/assets/php/vendor/react/socket/src/Connector.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/ConnectorInterface.php b/assets/php/vendor/react/socket/src/ConnectorInterface.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/DnsConnector.php b/assets/php/vendor/react/socket/src/DnsConnector.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/FixedUriConnector.php b/assets/php/vendor/react/socket/src/FixedUriConnector.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/LimitingServer.php b/assets/php/vendor/react/socket/src/LimitingServer.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/SecureConnector.php b/assets/php/vendor/react/socket/src/SecureConnector.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/SecureServer.php b/assets/php/vendor/react/socket/src/SecureServer.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/Server.php b/assets/php/vendor/react/socket/src/Server.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/ServerInterface.php b/assets/php/vendor/react/socket/src/ServerInterface.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/StreamEncryption.php b/assets/php/vendor/react/socket/src/StreamEncryption.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/TcpConnector.php b/assets/php/vendor/react/socket/src/TcpConnector.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/TcpServer.php b/assets/php/vendor/react/socket/src/TcpServer.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/TimeoutConnector.php b/assets/php/vendor/react/socket/src/TimeoutConnector.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/UnixConnector.php b/assets/php/vendor/react/socket/src/UnixConnector.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/src/UnixServer.php b/assets/php/vendor/react/socket/src/UnixServer.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/ConnectionTest.php b/assets/php/vendor/react/socket/tests/ConnectionTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/ConnectorTest.php b/assets/php/vendor/react/socket/tests/ConnectorTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/DnsConnectorTest.php b/assets/php/vendor/react/socket/tests/DnsConnectorTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/FixedUriConnectorTest.php b/assets/php/vendor/react/socket/tests/FixedUriConnectorTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/FunctionalConnectorTest.php b/assets/php/vendor/react/socket/tests/FunctionalConnectorTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/FunctionalSecureServerTest.php b/assets/php/vendor/react/socket/tests/FunctionalSecureServerTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/FunctionalTcpServerTest.php b/assets/php/vendor/react/socket/tests/FunctionalTcpServerTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/IntegrationTest.php b/assets/php/vendor/react/socket/tests/IntegrationTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/LimitingServerTest.php b/assets/php/vendor/react/socket/tests/LimitingServerTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/SecureConnectorTest.php b/assets/php/vendor/react/socket/tests/SecureConnectorTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/SecureIntegrationTest.php b/assets/php/vendor/react/socket/tests/SecureIntegrationTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/SecureServerTest.php b/assets/php/vendor/react/socket/tests/SecureServerTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/ServerTest.php b/assets/php/vendor/react/socket/tests/ServerTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/Stub/CallableStub.php b/assets/php/vendor/react/socket/tests/Stub/CallableStub.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/Stub/ConnectionStub.php b/assets/php/vendor/react/socket/tests/Stub/ConnectionStub.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/Stub/ServerStub.php b/assets/php/vendor/react/socket/tests/Stub/ServerStub.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/TcpConnectorTest.php b/assets/php/vendor/react/socket/tests/TcpConnectorTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/TcpServerTest.php b/assets/php/vendor/react/socket/tests/TcpServerTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/TestCase.php b/assets/php/vendor/react/socket/tests/TestCase.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/TimeoutConnectorTest.php b/assets/php/vendor/react/socket/tests/TimeoutConnectorTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/UnixConnectorTest.php b/assets/php/vendor/react/socket/tests/UnixConnectorTest.php old mode 100644 new mode 100755 diff --git a/assets/php/vendor/react/socket/tests/UnixServerTest.php b/assets/php/vendor/react/socket/tests/UnixServerTest.php old mode 100644 new mode 100755 -- cgit v1.2.3