diff --git a/.gitignore b/.gitignore old mode 100755 new mode 100644 diff --git a/install/checkConfiguration.php b/install/checkConfiguration.php index 955a6e9c88..bf3965b8a2 100644 --- a/install/checkConfiguration.php +++ b/install/checkConfiguration.php @@ -125,7 +125,11 @@ if(empty($_POST['salt'])){ $content = "id; + } + + function getTitle() { + return $this->title; + } + + function getDescription() { + return $this->description; + } + + function getKey() { + return $this->key; + } + + function getCreated() { + return $this->created; + } + + function getModified() { + return $this->modified; + } + + function getUsers_id() { + return $this->users_id; + } + + function setId($id) { + $this->id = $id; + } + + function setTitle($title) { + $this->title = $title; + } + + function setDescription($description) { + $this->description = $description; + } + + function setKey($key) { + $this->key = $key; + } + + function setCreated($created) { + $this->created = $created; + } + + function setModified($modified) { + $this->modified = $modified; + } + + function setUsers_id($users_id) { + $this->users_id = $users_id; + } + + + +} diff --git a/plugin/Live/getImage.php b/plugin/Live/getImage.php old mode 100755 new mode 100644 diff --git a/plugin/Live/index.php b/plugin/Live/index.php old mode 100755 new mode 100644 diff --git a/plugin/Live/install/install.sql b/plugin/Live/install/install.sql old mode 100755 new mode 100644 index 312a191aa9..a6a47b4340 --- a/plugin/Live/install/install.sql +++ b/plugin/Live/install/install.sql @@ -64,6 +64,23 @@ CREATE TABLE IF NOT EXISTS `live_transmitions_has_users_groups` ( ENGINE = InnoDB; +CREATE TABLE IF NOT EXISTS `live_transmitions_history` ( + `id` INT NOT NULL AUTO_INCREMENT, + `title` VARCHAR(255) NULL, + `description` TEXT NULL, + `key` VARCHAR(255) NOT NULL, + `created` DATETIME NULL, + `modified` DATETIME NULL, + `users_id` INT(11) NOT NULL, + PRIMARY KEY (`id`), + INDEX `fk_live_transmitions_history_users_idx` (`users_id` ASC), + CONSTRAINT `fk_live_transmitions_history_users` + FOREIGN KEY (`users_id`) + REFERENCES `users` (`id`) + ON DELETE CASCADE + ON UPDATE CASCADE) +ENGINE = InnoDB + SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; diff --git a/plugin/Live/install/nginx.conf b/plugin/Live/install/nginx.conf old mode 100755 new mode 100644 diff --git a/plugin/Live/install/nginx.old.conf b/plugin/Live/install/nginx.old.conf old mode 100755 new mode 100644 diff --git a/plugin/Live/install/updateV2.0.sql b/plugin/Live/install/updateV2.0.sql new file mode 100644 index 0000000000..b67e7c9b3a --- /dev/null +++ b/plugin/Live/install/updateV2.0.sql @@ -0,0 +1,16 @@ +CREATE TABLE IF NOT EXISTS `live_transmitions_history` ( + `id` INT NOT NULL AUTO_INCREMENT, + `title` VARCHAR(255) NULL, + `description` TEXT NULL, + `key` VARCHAR(255) NOT NULL, + `created` DATETIME NULL, + `modified` DATETIME NULL, + `users_id` INT(11) NOT NULL, + PRIMARY KEY (`id`), + INDEX `fk_live_transmitions_history_users_idx` (`users_id` ASC), + CONSTRAINT `fk_live_transmitions_history_users` + FOREIGN KEY (`users_id`) + REFERENCES `users` (`id`) + ON DELETE CASCADE + ON UPDATE CASCADE) +ENGINE = InnoDB \ No newline at end of file diff --git a/plugin/Live/on_play.php b/plugin/Live/on_play.php old mode 100755 new mode 100644 diff --git a/plugin/Live/on_publish.php b/plugin/Live/on_publish.php old mode 100755 new mode 100644 index 7eaab98708..110a5aab03 --- a/plugin/Live/on_publish.php +++ b/plugin/Live/on_publish.php @@ -2,6 +2,7 @@ require_once '../../videos/configuration.php'; require_once './Objects/LiveTransmition.php'; +require_once './Objects/LiveTransmitionHistory.php'; $obj = new stdClass(); $obj->error = true; @@ -21,6 +22,12 @@ if (!empty($_GET['p'])) { if(!$user->thisUserCanStream()){ error_log("User [{$obj->row['users_id']}] can not stream"); }else if ($_GET['p'] === $user->getPassword()) { + $lth = new LiveTransmitionHistory(); + $lth->setTitle($obj->row['title']); + $lth->setDescription($obj->row['description']); + $lth->setKey($_POST['name']); + $lth->setUsers_id($user->getBdId()); + $lth->save(); $obj->error = false; } else { error_log("Stream Publish error, Password does not match"); diff --git a/plugin/Live/on_record_done.php b/plugin/Live/on_record_done.php old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player.zip b/plugin/Live/sample-player.zip old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/index.html b/plugin/Live/sample-player/index.html old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/poster.jpg b/plugin/Live/sample-player/poster.jpg old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/font/VideoJS.eot b/plugin/Live/sample-player/video.js/font/VideoJS.eot old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/font/VideoJS.svg b/plugin/Live/sample-player/video.js/font/VideoJS.svg old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/font/VideoJS.ttf b/plugin/Live/sample-player/video.js/font/VideoJS.ttf old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/font/VideoJS.woff b/plugin/Live/sample-player/video.js/font/VideoJS.woff old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/ie8/videojs-ie8.js b/plugin/Live/sample-player/video.js/ie8/videojs-ie8.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/ie8/videojs-ie8.min.js b/plugin/Live/sample-player/video.js/ie8/videojs-ie8.min.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/ar.js b/plugin/Live/sample-player/video.js/lang/ar.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/ba.js b/plugin/Live/sample-player/video.js/lang/ba.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/bg.js b/plugin/Live/sample-player/video.js/lang/bg.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/ca.js b/plugin/Live/sample-player/video.js/lang/ca.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/cs.js b/plugin/Live/sample-player/video.js/lang/cs.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/da.js b/plugin/Live/sample-player/video.js/lang/da.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/de.js b/plugin/Live/sample-player/video.js/lang/de.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/el.js b/plugin/Live/sample-player/video.js/lang/el.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/en.js b/plugin/Live/sample-player/video.js/lang/en.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/es.js b/plugin/Live/sample-player/video.js/lang/es.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/fa.js b/plugin/Live/sample-player/video.js/lang/fa.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/fi.js b/plugin/Live/sample-player/video.js/lang/fi.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/fr.js b/plugin/Live/sample-player/video.js/lang/fr.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/hr.js b/plugin/Live/sample-player/video.js/lang/hr.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/hu.js b/plugin/Live/sample-player/video.js/lang/hu.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/it.js b/plugin/Live/sample-player/video.js/lang/it.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/ja.js b/plugin/Live/sample-player/video.js/lang/ja.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/ko.js b/plugin/Live/sample-player/video.js/lang/ko.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/nb.js b/plugin/Live/sample-player/video.js/lang/nb.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/nl.js b/plugin/Live/sample-player/video.js/lang/nl.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/nn.js b/plugin/Live/sample-player/video.js/lang/nn.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/pl.js b/plugin/Live/sample-player/video.js/lang/pl.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/pt-BR.js b/plugin/Live/sample-player/video.js/lang/pt-BR.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/ru.js b/plugin/Live/sample-player/video.js/lang/ru.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/sr.js b/plugin/Live/sample-player/video.js/lang/sr.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/sv.js b/plugin/Live/sample-player/video.js/lang/sv.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/tr.js b/plugin/Live/sample-player/video.js/lang/tr.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/uk.js b/plugin/Live/sample-player/video.js/lang/uk.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/vi.js b/plugin/Live/sample-player/video.js/lang/vi.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/zh-CN.js b/plugin/Live/sample-player/video.js/lang/zh-CN.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/lang/zh-TW.js b/plugin/Live/sample-player/video.js/lang/zh-TW.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/video-js.css b/plugin/Live/sample-player/video.js/video-js.css old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/video-js.min.css b/plugin/Live/sample-player/video.js/video-js.min.css old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/video-js.swf b/plugin/Live/sample-player/video.js/video-js.swf old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/video.js b/plugin/Live/sample-player/video.js/video.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/video.min.js b/plugin/Live/sample-player/video.js/video.min.js old mode 100755 new mode 100644 diff --git a/plugin/Live/sample-player/video.js/videojs-contrib-hls.min.js b/plugin/Live/sample-player/video.js/videojs-contrib-hls.min.js old mode 100755 new mode 100644 diff --git a/plugin/Live/saveLive.php b/plugin/Live/saveLive.php old mode 100755 new mode 100644 diff --git a/plugin/Live/stats.json.php b/plugin/Live/stats.json.php old mode 100755 new mode 100644 diff --git a/plugin/Live/view/Offline.jpg b/plugin/Live/view/Offline.jpg old mode 100755 new mode 100644 diff --git a/plugin/Live/view/OnAir.jpg b/plugin/Live/view/OnAir.jpg old mode 100755 new mode 100644 diff --git a/plugin/Live/view/RtmpPublisher.swf b/plugin/Live/view/RtmpPublisher.swf old mode 100755 new mode 100644 diff --git a/plugin/Live/view/expressInstall.swf b/plugin/Live/view/expressInstall.swf old mode 100755 new mode 100644 diff --git a/plugin/Live/view/live.css b/plugin/Live/view/live.css old mode 100755 new mode 100644 diff --git a/plugin/Live/view/modeYoutubeLive.php b/plugin/Live/view/modeYoutubeLive.php old mode 100755 new mode 100644 diff --git a/plugin/Live/view/onlineLabel.php b/plugin/Live/view/onlineLabel.php old mode 100755 new mode 100644 diff --git a/plugin/Live/view/onlineUsers.php b/plugin/Live/view/onlineUsers.php old mode 100755 new mode 100644 diff --git a/plugin/Live/view/swfobject.js b/plugin/Live/view/swfobject.js old mode 100755 new mode 100644 diff --git a/plugin/Live/view/videoEmbeded.php b/plugin/Live/view/videoEmbeded.php old mode 100755 new mode 100644 diff --git a/plugin/Live/view/videoEmbededV2.php b/plugin/Live/view/videoEmbededV2.php old mode 100755 new mode 100644 diff --git a/plugin/Live/view/videojs-contrib-hls.min.js b/plugin/Live/view/videojs-contrib-hls.min.js old mode 100755 new mode 100644 diff --git a/plugin/Live/view/webcam.swf b/plugin/Live/view/webcam.swf old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/Chat.php b/plugin/LiveChat/Chat.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/LiveChat.php b/plugin/LiveChat/LiveChat.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/Objects/LiveChatObj.php b/plugin/LiveChat/Objects/LiveChatObj.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/chat-server.php b/plugin/LiveChat/chat-server.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/composer.json b/plugin/LiveChat/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/composer.lock b/plugin/LiveChat/composer.lock old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/getChat.json.php b/plugin/LiveChat/getChat.json.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/index.php b/plugin/LiveChat/index.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/install/install.sql b/plugin/LiveChat/install/install.sql old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/autoload.php b/plugin/LiveChat/ratchet/autoload.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/.gitignore b/plugin/LiveChat/ratchet/cboden/ratchet/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/.travis.yml b/plugin/LiveChat/ratchet/cboden/ratchet/.travis.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/CHANGELOG.md b/plugin/LiveChat/ratchet/cboden/ratchet/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/LICENSE b/plugin/LiveChat/ratchet/cboden/ratchet/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/Makefile b/plugin/LiveChat/ratchet/cboden/ratchet/Makefile old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/README.md b/plugin/LiveChat/ratchet/cboden/ratchet/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/composer.json b/plugin/LiveChat/ratchet/cboden/ratchet/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/phpunit.xml.dist b/plugin/LiveChat/ratchet/cboden/ratchet/phpunit.xml.dist old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/AbstractConnectionDecorator.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/AbstractConnectionDecorator.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/App.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/App.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/ComponentInterface.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/ComponentInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/ConnectionInterface.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/ConnectionInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/CloseResponseTrait.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/CloseResponseTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/HttpRequestParser.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/HttpRequestParser.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/HttpServer.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/HttpServer.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/HttpServerInterface.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/HttpServerInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/OriginCheck.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/OriginCheck.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/Router.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Http/Router.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/MessageComponentInterface.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/MessageComponentInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/MessageInterface.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/MessageInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/EchoServer.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/EchoServer.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/FlashPolicy.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/FlashPolicy.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/IoConnection.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/IoConnection.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/IoServer.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/IoServer.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/IpBlackList.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Server/IpBlackList.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Serialize/HandlerInterface.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Serialize/HandlerInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Serialize/PhpBinaryHandler.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Serialize/PhpBinaryHandler.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Serialize/PhpHandler.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Serialize/PhpHandler.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/SessionProvider.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/SessionProvider.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Storage/Proxy/VirtualProxy.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Storage/Proxy/VirtualProxy.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Storage/VirtualSessionStorage.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Session/Storage/VirtualSessionStorage.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/Exception.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/Exception.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/JsonException.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/JsonException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/ServerProtocol.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/ServerProtocol.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/Topic.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/Topic.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/TopicManager.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/TopicManager.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/WampConnection.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/WampConnection.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/WampServer.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/WampServer.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/WampServerInterface.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/Wamp/WampServerInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/ConnContext.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/ConnContext.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/MessageCallableInterface.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/MessageCallableInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/MessageComponentInterface.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/MessageComponentInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/WsConnection.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/WsConnection.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/WsServer.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/WsServer.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/WsServerInterface.php b/plugin/LiveChat/ratchet/cboden/ratchet/src/Ratchet/WebSocket/WsServerInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/autobahn/bin/fuzzingserver.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/autobahn/bin/fuzzingserver.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/autobahn/fuzzingclient-all.json b/plugin/LiveChat/ratchet/cboden/ratchet/tests/autobahn/fuzzingclient-all.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/autobahn/fuzzingclient-profile.json b/plugin/LiveChat/ratchet/cboden/ratchet/tests/autobahn/fuzzingclient-profile.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/autobahn/fuzzingclient-quick.json b/plugin/LiveChat/ratchet/cboden/ratchet/tests/autobahn/fuzzingclient-quick.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/bootstrap.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/bootstrap.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/AbstractMessageComponentTestCase.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/AbstractMessageComponentTestCase.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Mock/Component.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Mock/Component.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Mock/Connection.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Mock/Connection.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Mock/ConnectionDecorator.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Mock/ConnectionDecorator.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Mock/WampComponent.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Mock/WampComponent.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/NullComponent.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/NullComponent.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Wamp/Stub/WsWampServerInterface.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/Wamp/Stub/WsWampServerInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/WebSocket/Stub/WsMessageComponentInterface.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/helpers/Ratchet/WebSocket/Stub/WsMessageComponentInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/AbstractConnectionDecoratorTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/AbstractConnectionDecoratorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Http/HttpRequestParserTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Http/HttpRequestParserTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Http/HttpServerTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Http/HttpServerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Http/OriginCheckTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Http/OriginCheckTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Http/RouterTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Http/RouterTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/EchoServerTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/EchoServerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/FlashPolicyComponentTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/FlashPolicyComponentTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/IoConnectionTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/IoConnectionTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/IoServerTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/IoServerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/IpBlackListComponentTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Server/IpBlackListComponentTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Session/Serialize/PhpHandlerTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Session/Serialize/PhpHandlerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Session/SessionComponentTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Session/SessionComponentTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Session/Storage/VirtualSessionStoragePDOTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Session/Storage/VirtualSessionStoragePDOTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/ServerProtocolTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/ServerProtocolTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/TopicManagerTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/TopicManagerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/TopicTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/TopicTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/WampConnectionTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/WampConnectionTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/WampServerTest.php b/plugin/LiveChat/ratchet/cboden/ratchet/tests/unit/Wamp/WampServerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/composer/ClassLoader.php b/plugin/LiveChat/ratchet/composer/ClassLoader.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/composer/LICENSE b/plugin/LiveChat/ratchet/composer/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/composer/autoload_classmap.php b/plugin/LiveChat/ratchet/composer/autoload_classmap.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/composer/autoload_files.php b/plugin/LiveChat/ratchet/composer/autoload_files.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/composer/autoload_namespaces.php b/plugin/LiveChat/ratchet/composer/autoload_namespaces.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/composer/autoload_psr4.php b/plugin/LiveChat/ratchet/composer/autoload_psr4.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/composer/autoload_real.php b/plugin/LiveChat/ratchet/composer/autoload_real.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/composer/autoload_static.php b/plugin/LiveChat/ratchet/composer/autoload_static.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/composer/installed.json b/plugin/LiveChat/ratchet/composer/installed.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/.gitignore b/plugin/LiveChat/ratchet/evenement/evenement/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/.travis.yml b/plugin/LiveChat/ratchet/evenement/evenement/.travis.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/CHANGELOG.md b/plugin/LiveChat/ratchet/evenement/evenement/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/LICENSE b/plugin/LiveChat/ratchet/evenement/evenement/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/README.md b/plugin/LiveChat/ratchet/evenement/evenement/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/composer.json b/plugin/LiveChat/ratchet/evenement/evenement/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/doc/00-intro.md b/plugin/LiveChat/ratchet/evenement/evenement/doc/00-intro.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/doc/01-api.md b/plugin/LiveChat/ratchet/evenement/evenement/doc/01-api.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/doc/02-plugin-system.md b/plugin/LiveChat/ratchet/evenement/evenement/doc/02-plugin-system.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/examples/benchmark-emit-no-arguments.php b/plugin/LiveChat/ratchet/evenement/evenement/examples/benchmark-emit-no-arguments.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/examples/benchmark-emit-once.php b/plugin/LiveChat/ratchet/evenement/evenement/examples/benchmark-emit-once.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/examples/benchmark-emit-one-argument.php b/plugin/LiveChat/ratchet/evenement/evenement/examples/benchmark-emit-one-argument.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/examples/benchmark-emit.php b/plugin/LiveChat/ratchet/evenement/evenement/examples/benchmark-emit.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/phpunit.xml.dist b/plugin/LiveChat/ratchet/evenement/evenement/phpunit.xml.dist old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/src/Evenement/EventEmitter.php b/plugin/LiveChat/ratchet/evenement/evenement/src/Evenement/EventEmitter.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/src/Evenement/EventEmitterInterface.php b/plugin/LiveChat/ratchet/evenement/evenement/src/Evenement/EventEmitterInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/src/Evenement/EventEmitterTrait.php b/plugin/LiveChat/ratchet/evenement/evenement/src/Evenement/EventEmitterTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/tests/Evenement/Tests/EventEmitterTest.php b/plugin/LiveChat/ratchet/evenement/evenement/tests/Evenement/Tests/EventEmitterTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/tests/Evenement/Tests/Listener.php b/plugin/LiveChat/ratchet/evenement/evenement/tests/Evenement/Tests/Listener.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/evenement/evenement/tests/Evenement/Tests/functions.php b/plugin/LiveChat/ratchet/evenement/evenement/tests/Evenement/Tests/functions.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/CHANGELOG.md b/plugin/LiveChat/ratchet/guzzlehttp/psr7/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/LICENSE b/plugin/LiveChat/ratchet/guzzlehttp/psr7/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/README.md b/plugin/LiveChat/ratchet/guzzlehttp/psr7/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/composer.json b/plugin/LiveChat/ratchet/guzzlehttp/psr7/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/AppendStream.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/AppendStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/BufferStream.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/BufferStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/CachingStream.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/CachingStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/DroppingStream.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/DroppingStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/FnStream.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/FnStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/InflateStream.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/InflateStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/LazyOpenStream.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/LazyOpenStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/LimitStream.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/LimitStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/MessageTrait.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/MessageTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/MultipartStream.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/MultipartStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/NoSeekStream.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/NoSeekStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/PumpStream.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/PumpStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/Request.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/Request.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/Response.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/Response.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/ServerRequest.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/ServerRequest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/Stream.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/Stream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/StreamDecoratorTrait.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/StreamDecoratorTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/StreamWrapper.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/StreamWrapper.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/UploadedFile.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/UploadedFile.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/Uri.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/Uri.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/UriNormalizer.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/UriNormalizer.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/UriResolver.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/UriResolver.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/functions.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/functions.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/functions_include.php b/plugin/LiveChat/ratchet/guzzlehttp/psr7/src/functions_include.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/psr/http-message/CHANGELOG.md b/plugin/LiveChat/ratchet/psr/http-message/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/psr/http-message/LICENSE b/plugin/LiveChat/ratchet/psr/http-message/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/psr/http-message/README.md b/plugin/LiveChat/ratchet/psr/http-message/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/psr/http-message/composer.json b/plugin/LiveChat/ratchet/psr/http-message/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/psr/http-message/src/MessageInterface.php b/plugin/LiveChat/ratchet/psr/http-message/src/MessageInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/psr/http-message/src/RequestInterface.php b/plugin/LiveChat/ratchet/psr/http-message/src/RequestInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/psr/http-message/src/ResponseInterface.php b/plugin/LiveChat/ratchet/psr/http-message/src/ResponseInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/psr/http-message/src/ServerRequestInterface.php b/plugin/LiveChat/ratchet/psr/http-message/src/ServerRequestInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/psr/http-message/src/StreamInterface.php b/plugin/LiveChat/ratchet/psr/http-message/src/StreamInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/psr/http-message/src/UploadedFileInterface.php b/plugin/LiveChat/ratchet/psr/http-message/src/UploadedFileInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/psr/http-message/src/UriInterface.php b/plugin/LiveChat/ratchet/psr/http-message/src/UriInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/.gitignore b/plugin/LiveChat/ratchet/ratchet/rfc6455/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/.travis.yml b/plugin/LiveChat/ratchet/ratchet/rfc6455/.travis.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/LICENSE b/plugin/LiveChat/ratchet/ratchet/rfc6455/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/README.md b/plugin/LiveChat/ratchet/ratchet/rfc6455/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/composer.json b/plugin/LiveChat/ratchet/ratchet/rfc6455/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/phpunit.xml.dist b/plugin/LiveChat/ratchet/ratchet/rfc6455/phpunit.xml.dist old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Handshake/ClientNegotiator.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Handshake/ClientNegotiator.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Handshake/NegotiatorInterface.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Handshake/NegotiatorInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Handshake/RequestVerifier.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Handshake/RequestVerifier.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Handshake/ResponseVerifier.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Handshake/ResponseVerifier.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Handshake/ServerNegotiator.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Handshake/ServerNegotiator.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/CloseFrameChecker.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/CloseFrameChecker.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/DataInterface.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/DataInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/Frame.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/Frame.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/FrameInterface.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/FrameInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/Message.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/Message.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/MessageBuffer.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/MessageBuffer.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/MessageInterface.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/src/Messaging/MessageInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/AbResultsTest.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/AbResultsTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/ab/clientRunner.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/ab/clientRunner.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/ab/fuzzingclient.json b/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/ab/fuzzingclient.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/ab/fuzzingserver.json b/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/ab/fuzzingserver.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/ab/run_ab_tests.sh b/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/ab/run_ab_tests.sh old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/ab/startServer.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/ab/startServer.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/bootstrap.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/bootstrap.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/unit/Handshake/RequestVerifierTest.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/unit/Handshake/RequestVerifierTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/unit/Handshake/ResponseVerifierTest.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/unit/Handshake/ResponseVerifierTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/unit/Handshake/ServerNegotiatorTest.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/unit/Handshake/ServerNegotiatorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/unit/Messaging/FrameTest.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/unit/Messaging/FrameTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/unit/Messaging/MessageBufferTest.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/unit/Messaging/MessageBufferTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/unit/Messaging/MessageTest.php b/plugin/LiveChat/ratchet/ratchet/rfc6455/tests/unit/Messaging/MessageTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/cache/.gitignore b/plugin/LiveChat/ratchet/react/cache/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/cache/.travis.yml b/plugin/LiveChat/ratchet/react/cache/.travis.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/cache/CHANGELOG.md b/plugin/LiveChat/ratchet/react/cache/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/cache/LICENSE b/plugin/LiveChat/ratchet/react/cache/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/cache/README.md b/plugin/LiveChat/ratchet/react/cache/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/cache/composer.json b/plugin/LiveChat/ratchet/react/cache/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/cache/phpunit.xml.dist b/plugin/LiveChat/ratchet/react/cache/phpunit.xml.dist old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/cache/src/ArrayCache.php b/plugin/LiveChat/ratchet/react/cache/src/ArrayCache.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/cache/src/CacheInterface.php b/plugin/LiveChat/ratchet/react/cache/src/CacheInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/cache/tests/ArrayCacheTest.php b/plugin/LiveChat/ratchet/react/cache/tests/ArrayCacheTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/cache/tests/CallableStub.php b/plugin/LiveChat/ratchet/react/cache/tests/CallableStub.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/cache/tests/TestCase.php b/plugin/LiveChat/ratchet/react/cache/tests/TestCase.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/.gitignore b/plugin/LiveChat/ratchet/react/dns/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/.travis.yml b/plugin/LiveChat/ratchet/react/dns/.travis.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/CHANGELOG.md b/plugin/LiveChat/ratchet/react/dns/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/LICENSE b/plugin/LiveChat/ratchet/react/dns/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/README.md b/plugin/LiveChat/ratchet/react/dns/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/composer.json b/plugin/LiveChat/ratchet/react/dns/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/examples/01-one.php b/plugin/LiveChat/ratchet/react/dns/examples/01-one.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/examples/02-concurrent.php b/plugin/LiveChat/ratchet/react/dns/examples/02-concurrent.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/examples/03-cached.php b/plugin/LiveChat/ratchet/react/dns/examples/03-cached.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/examples/04-query-a-and-aaaa.php b/plugin/LiveChat/ratchet/react/dns/examples/04-query-a-and-aaaa.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/phpunit.xml.dist b/plugin/LiveChat/ratchet/react/dns/phpunit.xml.dist old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/BadServerException.php b/plugin/LiveChat/ratchet/react/dns/src/BadServerException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Config/Config.php b/plugin/LiveChat/ratchet/react/dns/src/Config/Config.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Config/FilesystemFactory.php b/plugin/LiveChat/ratchet/react/dns/src/Config/FilesystemFactory.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Config/HostsFile.php b/plugin/LiveChat/ratchet/react/dns/src/Config/HostsFile.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Model/HeaderBag.php b/plugin/LiveChat/ratchet/react/dns/src/Model/HeaderBag.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Model/Message.php b/plugin/LiveChat/ratchet/react/dns/src/Model/Message.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Model/Record.php b/plugin/LiveChat/ratchet/react/dns/src/Model/Record.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Protocol/BinaryDumper.php b/plugin/LiveChat/ratchet/react/dns/src/Protocol/BinaryDumper.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Protocol/Parser.php b/plugin/LiveChat/ratchet/react/dns/src/Protocol/Parser.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Query/CachedExecutor.php b/plugin/LiveChat/ratchet/react/dns/src/Query/CachedExecutor.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Query/CancellationException.php b/plugin/LiveChat/ratchet/react/dns/src/Query/CancellationException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Query/Executor.php b/plugin/LiveChat/ratchet/react/dns/src/Query/Executor.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Query/ExecutorInterface.php b/plugin/LiveChat/ratchet/react/dns/src/Query/ExecutorInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Query/HostsFileExecutor.php b/plugin/LiveChat/ratchet/react/dns/src/Query/HostsFileExecutor.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Query/Query.php b/plugin/LiveChat/ratchet/react/dns/src/Query/Query.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Query/RecordBag.php b/plugin/LiveChat/ratchet/react/dns/src/Query/RecordBag.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Query/RecordCache.php b/plugin/LiveChat/ratchet/react/dns/src/Query/RecordCache.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Query/RetryExecutor.php b/plugin/LiveChat/ratchet/react/dns/src/Query/RetryExecutor.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Query/TimeoutException.php b/plugin/LiveChat/ratchet/react/dns/src/Query/TimeoutException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Query/TimeoutExecutor.php b/plugin/LiveChat/ratchet/react/dns/src/Query/TimeoutExecutor.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/RecordNotFoundException.php b/plugin/LiveChat/ratchet/react/dns/src/RecordNotFoundException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Resolver/Factory.php b/plugin/LiveChat/ratchet/react/dns/src/Resolver/Factory.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/src/Resolver/Resolver.php b/plugin/LiveChat/ratchet/react/dns/src/Resolver/Resolver.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/CallableStub.php b/plugin/LiveChat/ratchet/react/dns/tests/CallableStub.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Config/FilesystemFactoryTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Config/FilesystemFactoryTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Config/HostsFileTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Config/HostsFileTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Fixtures/etc/resolv.conf b/plugin/LiveChat/ratchet/react/dns/tests/Fixtures/etc/resolv.conf old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/FunctionalResolverTest.php b/plugin/LiveChat/ratchet/react/dns/tests/FunctionalResolverTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Model/MessageTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Model/MessageTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Protocol/BinaryDumperTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Protocol/BinaryDumperTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Protocol/ParserTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Protocol/ParserTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Query/CachedExecutorTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Query/CachedExecutorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Query/ExecutorTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Query/ExecutorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Query/HostsFileExecutorTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Query/HostsFileExecutorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Query/RecordBagTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Query/RecordBagTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Query/RecordCacheTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Query/RecordCacheTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Query/RetryExecutorTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Query/RetryExecutorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Query/TimeoutExecutorTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Query/TimeoutExecutorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Resolver/FactoryTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Resolver/FactoryTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Resolver/ResolveAliasesTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Resolver/ResolveAliasesTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/Resolver/ResolverTest.php b/plugin/LiveChat/ratchet/react/dns/tests/Resolver/ResolverTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/dns/tests/TestCase.php b/plugin/LiveChat/ratchet/react/dns/tests/TestCase.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/.gitignore b/plugin/LiveChat/ratchet/react/event-loop/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/.travis.yml b/plugin/LiveChat/ratchet/react/event-loop/.travis.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/CHANGELOG.md b/plugin/LiveChat/ratchet/react/event-loop/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/LICENSE b/plugin/LiveChat/ratchet/react/event-loop/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/README.md b/plugin/LiveChat/ratchet/react/event-loop/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/composer.json b/plugin/LiveChat/ratchet/react/event-loop/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/phpunit.xml.dist b/plugin/LiveChat/ratchet/react/event-loop/phpunit.xml.dist old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/src/ExtEventLoop.php b/plugin/LiveChat/ratchet/react/event-loop/src/ExtEventLoop.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/src/Factory.php b/plugin/LiveChat/ratchet/react/event-loop/src/Factory.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/src/LibEvLoop.php b/plugin/LiveChat/ratchet/react/event-loop/src/LibEvLoop.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/src/LibEventLoop.php b/plugin/LiveChat/ratchet/react/event-loop/src/LibEventLoop.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/src/LoopInterface.php b/plugin/LiveChat/ratchet/react/event-loop/src/LoopInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/src/StreamSelectLoop.php b/plugin/LiveChat/ratchet/react/event-loop/src/StreamSelectLoop.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/src/Tick/FutureTickQueue.php b/plugin/LiveChat/ratchet/react/event-loop/src/Tick/FutureTickQueue.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/src/Tick/NextTickQueue.php b/plugin/LiveChat/ratchet/react/event-loop/src/Tick/NextTickQueue.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/src/Timer/Timer.php b/plugin/LiveChat/ratchet/react/event-loop/src/Timer/Timer.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/src/Timer/TimerInterface.php b/plugin/LiveChat/ratchet/react/event-loop/src/Timer/TimerInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/src/Timer/Timers.php b/plugin/LiveChat/ratchet/react/event-loop/src/Timer/Timers.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/AbstractLoopTest.php b/plugin/LiveChat/ratchet/react/event-loop/tests/AbstractLoopTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/CallableStub.php b/plugin/LiveChat/ratchet/react/event-loop/tests/CallableStub.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/ExtEventLoopTest.php b/plugin/LiveChat/ratchet/react/event-loop/tests/ExtEventLoopTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/LibEvLoopTest.php b/plugin/LiveChat/ratchet/react/event-loop/tests/LibEvLoopTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/LibEventLoopTest.php b/plugin/LiveChat/ratchet/react/event-loop/tests/LibEventLoopTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/StreamSelectLoopTest.php b/plugin/LiveChat/ratchet/react/event-loop/tests/StreamSelectLoopTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/TestCase.php b/plugin/LiveChat/ratchet/react/event-loop/tests/TestCase.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/Timer/AbstractTimerTest.php b/plugin/LiveChat/ratchet/react/event-loop/tests/Timer/AbstractTimerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/Timer/ExtEventTimerTest.php b/plugin/LiveChat/ratchet/react/event-loop/tests/Timer/ExtEventTimerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/Timer/LibEvTimerTest.php b/plugin/LiveChat/ratchet/react/event-loop/tests/Timer/LibEvTimerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/Timer/LibEventTimerTest.php b/plugin/LiveChat/ratchet/react/event-loop/tests/Timer/LibEventTimerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/Timer/StreamSelectTimerTest.php b/plugin/LiveChat/ratchet/react/event-loop/tests/Timer/StreamSelectTimerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/Timer/TimersTest.php b/plugin/LiveChat/ratchet/react/event-loop/tests/Timer/TimersTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/tests/bootstrap.php b/plugin/LiveChat/ratchet/react/event-loop/tests/bootstrap.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/event-loop/travis-init.sh b/plugin/LiveChat/ratchet/react/event-loop/travis-init.sh old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/.gitignore b/plugin/LiveChat/ratchet/react/promise-timer/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/.travis.yml b/plugin/LiveChat/ratchet/react/promise-timer/.travis.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/CHANGELOG.md b/plugin/LiveChat/ratchet/react/promise-timer/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/LICENSE b/plugin/LiveChat/ratchet/react/promise-timer/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/README.md b/plugin/LiveChat/ratchet/react/promise-timer/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/composer.json b/plugin/LiveChat/ratchet/react/promise-timer/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/phpunit.xml.dist b/plugin/LiveChat/ratchet/react/promise-timer/phpunit.xml.dist old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/src/TimeoutException.php b/plugin/LiveChat/ratchet/react/promise-timer/src/TimeoutException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/src/functions.php b/plugin/LiveChat/ratchet/react/promise-timer/src/functions.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/tests/CallableStub.php b/plugin/LiveChat/ratchet/react/promise-timer/tests/CallableStub.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/tests/FunctionRejectTest.php b/plugin/LiveChat/ratchet/react/promise-timer/tests/FunctionRejectTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/tests/FunctionResolveTest.php b/plugin/LiveChat/ratchet/react/promise-timer/tests/FunctionResolveTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/tests/FunctionTimeoutTest.php b/plugin/LiveChat/ratchet/react/promise-timer/tests/FunctionTimeoutTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/tests/TestCase.php b/plugin/LiveChat/ratchet/react/promise-timer/tests/TestCase.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise-timer/tests/TimeoutExceptionTest.php b/plugin/LiveChat/ratchet/react/promise-timer/tests/TimeoutExceptionTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/.gitignore b/plugin/LiveChat/ratchet/react/promise/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/.travis.yml b/plugin/LiveChat/ratchet/react/promise/.travis.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/CHANGELOG.md b/plugin/LiveChat/ratchet/react/promise/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/LICENSE b/plugin/LiveChat/ratchet/react/promise/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/README.md b/plugin/LiveChat/ratchet/react/promise/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/composer.json b/plugin/LiveChat/ratchet/react/promise/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/phpunit.xml.dist b/plugin/LiveChat/ratchet/react/promise/phpunit.xml.dist old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/CancellablePromiseInterface.php b/plugin/LiveChat/ratchet/react/promise/src/CancellablePromiseInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/CancellationQueue.php b/plugin/LiveChat/ratchet/react/promise/src/CancellationQueue.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/Deferred.php b/plugin/LiveChat/ratchet/react/promise/src/Deferred.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/Exception/LengthException.php b/plugin/LiveChat/ratchet/react/promise/src/Exception/LengthException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/ExtendedPromiseInterface.php b/plugin/LiveChat/ratchet/react/promise/src/ExtendedPromiseInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/FulfilledPromise.php b/plugin/LiveChat/ratchet/react/promise/src/FulfilledPromise.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/LazyPromise.php b/plugin/LiveChat/ratchet/react/promise/src/LazyPromise.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/Promise.php b/plugin/LiveChat/ratchet/react/promise/src/Promise.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/PromiseInterface.php b/plugin/LiveChat/ratchet/react/promise/src/PromiseInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/PromisorInterface.php b/plugin/LiveChat/ratchet/react/promise/src/PromisorInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/RejectedPromise.php b/plugin/LiveChat/ratchet/react/promise/src/RejectedPromise.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/UnhandledRejectionException.php b/plugin/LiveChat/ratchet/react/promise/src/UnhandledRejectionException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/functions.php b/plugin/LiveChat/ratchet/react/promise/src/functions.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/src/functions_include.php b/plugin/LiveChat/ratchet/react/promise/src/functions_include.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/CancellationQueueTest.php b/plugin/LiveChat/ratchet/react/promise/tests/CancellationQueueTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/DeferredTest.php b/plugin/LiveChat/ratchet/react/promise/tests/DeferredTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/FulfilledPromiseTest.php b/plugin/LiveChat/ratchet/react/promise/tests/FulfilledPromiseTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/FunctionAllTest.php b/plugin/LiveChat/ratchet/react/promise/tests/FunctionAllTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/FunctionAnyTest.php b/plugin/LiveChat/ratchet/react/promise/tests/FunctionAnyTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/FunctionCheckTypehintTest.php b/plugin/LiveChat/ratchet/react/promise/tests/FunctionCheckTypehintTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/FunctionMapTest.php b/plugin/LiveChat/ratchet/react/promise/tests/FunctionMapTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/FunctionRaceTest.php b/plugin/LiveChat/ratchet/react/promise/tests/FunctionRaceTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/FunctionReduceTest.php b/plugin/LiveChat/ratchet/react/promise/tests/FunctionReduceTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/FunctionRejectTest.php b/plugin/LiveChat/ratchet/react/promise/tests/FunctionRejectTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/FunctionResolveTest.php b/plugin/LiveChat/ratchet/react/promise/tests/FunctionResolveTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/FunctionSomeTest.php b/plugin/LiveChat/ratchet/react/promise/tests/FunctionSomeTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/LazyPromiseTest.php b/plugin/LiveChat/ratchet/react/promise/tests/LazyPromiseTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/PromiseAdapter/CallbackPromiseAdapter.php b/plugin/LiveChat/ratchet/react/promise/tests/PromiseAdapter/CallbackPromiseAdapter.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/PromiseAdapter/PromiseAdapterInterface.php b/plugin/LiveChat/ratchet/react/promise/tests/PromiseAdapter/PromiseAdapterInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest.php b/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/CancelTestTrait.php b/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/CancelTestTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/FullTestTrait.php b/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/FullTestTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/NotifyTestTrait.php b/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/NotifyTestTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/PromiseFulfilledTestTrait.php b/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/PromiseFulfilledTestTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/PromisePendingTestTrait.php b/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/PromisePendingTestTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/PromiseRejectedTestTrait.php b/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/PromiseRejectedTestTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/PromiseSettledTestTrait.php b/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/PromiseSettledTestTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/RejectTestTrait.php b/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/RejectTestTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/ResolveTestTrait.php b/plugin/LiveChat/ratchet/react/promise/tests/PromiseTest/ResolveTestTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/RejectedPromiseTest.php b/plugin/LiveChat/ratchet/react/promise/tests/RejectedPromiseTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/Stub/CallableStub.php b/plugin/LiveChat/ratchet/react/promise/tests/Stub/CallableStub.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/TestCase.php b/plugin/LiveChat/ratchet/react/promise/tests/TestCase.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/bootstrap.php b/plugin/LiveChat/ratchet/react/promise/tests/bootstrap.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/fixtures/SimpleFulfilledTestPromise.php b/plugin/LiveChat/ratchet/react/promise/tests/fixtures/SimpleFulfilledTestPromise.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/fixtures/SimpleFulfilledTestThenable.php b/plugin/LiveChat/ratchet/react/promise/tests/fixtures/SimpleFulfilledTestThenable.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/fixtures/SimpleRejectedTestPromise.php b/plugin/LiveChat/ratchet/react/promise/tests/fixtures/SimpleRejectedTestPromise.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/fixtures/SimpleTestCancellable.php b/plugin/LiveChat/ratchet/react/promise/tests/fixtures/SimpleTestCancellable.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/promise/tests/fixtures/SimpleTestCancellableThenable.php b/plugin/LiveChat/ratchet/react/promise/tests/fixtures/SimpleTestCancellableThenable.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/.gitignore b/plugin/LiveChat/ratchet/react/socket/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/.travis.yml b/plugin/LiveChat/ratchet/react/socket/.travis.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/CHANGELOG.md b/plugin/LiveChat/ratchet/react/socket/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/LICENSE b/plugin/LiveChat/ratchet/react/socket/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/README.md b/plugin/LiveChat/ratchet/react/socket/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/composer.json b/plugin/LiveChat/ratchet/react/socket/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/examples/01-echo.php b/plugin/LiveChat/ratchet/react/socket/examples/01-echo.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/examples/02-chat-server.php b/plugin/LiveChat/ratchet/react/socket/examples/02-chat-server.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/examples/03-benchmark.php b/plugin/LiveChat/ratchet/react/socket/examples/03-benchmark.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/examples/11-http.php b/plugin/LiveChat/ratchet/react/socket/examples/11-http.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/examples/12-https.php b/plugin/LiveChat/ratchet/react/socket/examples/12-https.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/examples/13-netcat.php b/plugin/LiveChat/ratchet/react/socket/examples/13-netcat.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/examples/14-web.php b/plugin/LiveChat/ratchet/react/socket/examples/14-web.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/examples/99-generate-self-signed.php b/plugin/LiveChat/ratchet/react/socket/examples/99-generate-self-signed.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/examples/localhost.pem b/plugin/LiveChat/ratchet/react/socket/examples/localhost.pem old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/examples/localhost_swordfish.pem b/plugin/LiveChat/ratchet/react/socket/examples/localhost_swordfish.pem old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/phpunit.xml.dist b/plugin/LiveChat/ratchet/react/socket/phpunit.xml.dist old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/Connection.php b/plugin/LiveChat/ratchet/react/socket/src/Connection.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/ConnectionInterface.php b/plugin/LiveChat/ratchet/react/socket/src/ConnectionInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/Connector.php b/plugin/LiveChat/ratchet/react/socket/src/Connector.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/ConnectorInterface.php b/plugin/LiveChat/ratchet/react/socket/src/ConnectorInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/DnsConnector.php b/plugin/LiveChat/ratchet/react/socket/src/DnsConnector.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/LimitingServer.php b/plugin/LiveChat/ratchet/react/socket/src/LimitingServer.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/SecureConnector.php b/plugin/LiveChat/ratchet/react/socket/src/SecureConnector.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/SecureServer.php b/plugin/LiveChat/ratchet/react/socket/src/SecureServer.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/Server.php b/plugin/LiveChat/ratchet/react/socket/src/Server.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/ServerInterface.php b/plugin/LiveChat/ratchet/react/socket/src/ServerInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/StreamEncryption.php b/plugin/LiveChat/ratchet/react/socket/src/StreamEncryption.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/TcpConnector.php b/plugin/LiveChat/ratchet/react/socket/src/TcpConnector.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/TcpServer.php b/plugin/LiveChat/ratchet/react/socket/src/TcpServer.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/TimeoutConnector.php b/plugin/LiveChat/ratchet/react/socket/src/TimeoutConnector.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/src/UnixConnector.php b/plugin/LiveChat/ratchet/react/socket/src/UnixConnector.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/ConnectorTest.php b/plugin/LiveChat/ratchet/react/socket/tests/ConnectorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/DnsConnectorTest.php b/plugin/LiveChat/ratchet/react/socket/tests/DnsConnectorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/FunctionalConnectorTest.php b/plugin/LiveChat/ratchet/react/socket/tests/FunctionalConnectorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/FunctionalSecureServerTest.php b/plugin/LiveChat/ratchet/react/socket/tests/FunctionalSecureServerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/FunctionalTcpServerTest.php b/plugin/LiveChat/ratchet/react/socket/tests/FunctionalTcpServerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/IntegrationTest.php b/plugin/LiveChat/ratchet/react/socket/tests/IntegrationTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/LimitingServerTest.php b/plugin/LiveChat/ratchet/react/socket/tests/LimitingServerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/SecureConnectorTest.php b/plugin/LiveChat/ratchet/react/socket/tests/SecureConnectorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/SecureIntegrationTest.php b/plugin/LiveChat/ratchet/react/socket/tests/SecureIntegrationTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/SecureServerTest.php b/plugin/LiveChat/ratchet/react/socket/tests/SecureServerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/ServerTest.php b/plugin/LiveChat/ratchet/react/socket/tests/ServerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/Stub/CallableStub.php b/plugin/LiveChat/ratchet/react/socket/tests/Stub/CallableStub.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/Stub/ConnectionStub.php b/plugin/LiveChat/ratchet/react/socket/tests/Stub/ConnectionStub.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/Stub/ServerStub.php b/plugin/LiveChat/ratchet/react/socket/tests/Stub/ServerStub.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/TcpConnectorTest.php b/plugin/LiveChat/ratchet/react/socket/tests/TcpConnectorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/TcpServerTest.php b/plugin/LiveChat/ratchet/react/socket/tests/TcpServerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/TestCase.php b/plugin/LiveChat/ratchet/react/socket/tests/TestCase.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/TimeoutConnectorTest.php b/plugin/LiveChat/ratchet/react/socket/tests/TimeoutConnectorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/socket/tests/UnixConnectorTest.php b/plugin/LiveChat/ratchet/react/socket/tests/UnixConnectorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/.gitignore b/plugin/LiveChat/ratchet/react/stream/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/.travis.yml b/plugin/LiveChat/ratchet/react/stream/.travis.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/CHANGELOG.md b/plugin/LiveChat/ratchet/react/stream/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/LICENSE b/plugin/LiveChat/ratchet/react/stream/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/README.md b/plugin/LiveChat/ratchet/react/stream/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/composer.json b/plugin/LiveChat/ratchet/react/stream/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/examples/benchmark-throughput.php b/plugin/LiveChat/ratchet/react/stream/examples/benchmark-throughput.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/examples/cat.php b/plugin/LiveChat/ratchet/react/stream/examples/cat.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/phpunit.xml.dist b/plugin/LiveChat/ratchet/react/stream/phpunit.xml.dist old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/src/CompositeStream.php b/plugin/LiveChat/ratchet/react/stream/src/CompositeStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/src/DuplexResourceStream.php b/plugin/LiveChat/ratchet/react/stream/src/DuplexResourceStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/src/DuplexStreamInterface.php b/plugin/LiveChat/ratchet/react/stream/src/DuplexStreamInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/src/ReadableResourceStream.php b/plugin/LiveChat/ratchet/react/stream/src/ReadableResourceStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/src/ReadableStreamInterface.php b/plugin/LiveChat/ratchet/react/stream/src/ReadableStreamInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/src/ThroughStream.php b/plugin/LiveChat/ratchet/react/stream/src/ThroughStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/src/Util.php b/plugin/LiveChat/ratchet/react/stream/src/Util.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/src/WritableResourceStream.php b/plugin/LiveChat/ratchet/react/stream/src/WritableResourceStream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/src/WritableStreamInterface.php b/plugin/LiveChat/ratchet/react/stream/src/WritableStreamInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/tests/CallableStub.php b/plugin/LiveChat/ratchet/react/stream/tests/CallableStub.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/tests/CompositeStreamTest.php b/plugin/LiveChat/ratchet/react/stream/tests/CompositeStreamTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/tests/DuplexResourceStreamIntegrationTest.php b/plugin/LiveChat/ratchet/react/stream/tests/DuplexResourceStreamIntegrationTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/tests/DuplexResourceStreamTest.php b/plugin/LiveChat/ratchet/react/stream/tests/DuplexResourceStreamTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/tests/EnforceBlockingWrapper.php b/plugin/LiveChat/ratchet/react/stream/tests/EnforceBlockingWrapper.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/tests/FunctionalInternetTest.php b/plugin/LiveChat/ratchet/react/stream/tests/FunctionalInternetTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/tests/ReadableResourceStreamTest.php b/plugin/LiveChat/ratchet/react/stream/tests/ReadableResourceStreamTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/tests/Stub/ReadableStreamStub.php b/plugin/LiveChat/ratchet/react/stream/tests/Stub/ReadableStreamStub.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/tests/TestCase.php b/plugin/LiveChat/ratchet/react/stream/tests/TestCase.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/tests/ThroughStreamTest.php b/plugin/LiveChat/ratchet/react/stream/tests/ThroughStreamTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/tests/UtilTest.php b/plugin/LiveChat/ratchet/react/stream/tests/UtilTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/tests/WritableStreamResourceTest.php b/plugin/LiveChat/ratchet/react/stream/tests/WritableStreamResourceTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/react/stream/tests/bootstrap.php b/plugin/LiveChat/ratchet/react/stream/tests/bootstrap.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/.gitignore b/plugin/LiveChat/ratchet/symfony/http-foundation/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/AcceptHeader.php b/plugin/LiveChat/ratchet/symfony/http-foundation/AcceptHeader.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/AcceptHeaderItem.php b/plugin/LiveChat/ratchet/symfony/http-foundation/AcceptHeaderItem.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/ApacheRequest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/ApacheRequest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/BinaryFileResponse.php b/plugin/LiveChat/ratchet/symfony/http-foundation/BinaryFileResponse.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/CHANGELOG.md b/plugin/LiveChat/ratchet/symfony/http-foundation/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Cookie.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Cookie.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Exception/ConflictingHeadersException.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Exception/ConflictingHeadersException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Exception/RequestExceptionInterface.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Exception/RequestExceptionInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Exception/SuspiciousOperationException.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Exception/SuspiciousOperationException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/ExpressionRequestMatcher.php b/plugin/LiveChat/ratchet/symfony/http-foundation/ExpressionRequestMatcher.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/Exception/AccessDeniedException.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/Exception/AccessDeniedException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/Exception/FileException.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/Exception/FileException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/Exception/FileNotFoundException.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/Exception/FileNotFoundException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/Exception/UnexpectedTypeException.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/Exception/UnexpectedTypeException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/Exception/UploadException.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/Exception/UploadException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/File.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/File.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/ExtensionGuesser.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/ExtensionGuesser.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/ExtensionGuesserInterface.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/ExtensionGuesserInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/FileBinaryMimeTypeGuesser.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/FileBinaryMimeTypeGuesser.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/FileinfoMimeTypeGuesser.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/FileinfoMimeTypeGuesser.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/MimeTypeExtensionGuesser.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/MimeTypeExtensionGuesser.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/MimeTypeGuesser.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/MimeTypeGuesser.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/MimeTypeGuesserInterface.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/MimeType/MimeTypeGuesserInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/Stream.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/Stream.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/File/UploadedFile.php b/plugin/LiveChat/ratchet/symfony/http-foundation/File/UploadedFile.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/FileBag.php b/plugin/LiveChat/ratchet/symfony/http-foundation/FileBag.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/HeaderBag.php b/plugin/LiveChat/ratchet/symfony/http-foundation/HeaderBag.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/IpUtils.php b/plugin/LiveChat/ratchet/symfony/http-foundation/IpUtils.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/JsonResponse.php b/plugin/LiveChat/ratchet/symfony/http-foundation/JsonResponse.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/LICENSE b/plugin/LiveChat/ratchet/symfony/http-foundation/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/ParameterBag.php b/plugin/LiveChat/ratchet/symfony/http-foundation/ParameterBag.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/README.md b/plugin/LiveChat/ratchet/symfony/http-foundation/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/RedirectResponse.php b/plugin/LiveChat/ratchet/symfony/http-foundation/RedirectResponse.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Request.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Request.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/RequestMatcher.php b/plugin/LiveChat/ratchet/symfony/http-foundation/RequestMatcher.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/RequestMatcherInterface.php b/plugin/LiveChat/ratchet/symfony/http-foundation/RequestMatcherInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/RequestStack.php b/plugin/LiveChat/ratchet/symfony/http-foundation/RequestStack.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Response.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Response.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/ResponseHeaderBag.php b/plugin/LiveChat/ratchet/symfony/http-foundation/ResponseHeaderBag.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/ServerBag.php b/plugin/LiveChat/ratchet/symfony/http-foundation/ServerBag.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Attribute/AttributeBag.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Attribute/AttributeBag.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Flash/FlashBag.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Flash/FlashBag.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Flash/FlashBagInterface.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Flash/FlashBagInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Session.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Session.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/SessionBagInterface.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/SessionBagInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/SessionInterface.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/SessionInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/MemcacheSessionHandler.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/MemcacheSessionHandler.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/NativeSessionHandler.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/NativeSessionHandler.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/WriteCheckSessionHandler.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Handler/WriteCheckSessionHandler.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/MetadataBag.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/MetadataBag.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/NativeSessionStorage.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/NativeSessionStorage.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Proxy/NativeProxy.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Proxy/NativeProxy.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/SessionStorageInterface.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Session/Storage/SessionStorageInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/StreamedResponse.php b/plugin/LiveChat/ratchet/symfony/http-foundation/StreamedResponse.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/AcceptHeaderItemTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/AcceptHeaderItemTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/AcceptHeaderTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/AcceptHeaderTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ApacheRequestTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ApacheRequestTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/BinaryFileResponseTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/BinaryFileResponseTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/CookieTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/CookieTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ExpressionRequestMatcherTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ExpressionRequestMatcherTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/FakeFile.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/FakeFile.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/FileTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/FileTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/Fixtures/.unknownextension b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/Fixtures/.unknownextension old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/Fixtures/directory/.empty b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/Fixtures/directory/.empty old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/Fixtures/other-file.example b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/Fixtures/other-file.example old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/Fixtures/test b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/Fixtures/test old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/Fixtures/test.gif b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/Fixtures/test.gif old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/MimeType/MimeTypeTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/MimeType/MimeTypeTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/UploadedFileTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/File/UploadedFileTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/FileBagTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/FileBagTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/HeaderBagTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/HeaderBagTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/IpUtilsTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/IpUtilsTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/JsonResponseTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/JsonResponseTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ParameterBagTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ParameterBagTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/RedirectResponseTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/RedirectResponseTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/RequestMatcherTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/RequestMatcherTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/RequestStackTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/RequestStackTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/RequestTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/RequestTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ResponseHeaderBagTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ResponseHeaderBagTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ResponseTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ResponseTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ResponseTestCase.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ResponseTestCase.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ServerBagTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/ServerBagTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Attribute/AttributeBagTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Attribute/AttributeBagTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Attribute/NamespacedAttributeBagTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Attribute/NamespacedAttributeBagTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Flash/AutoExpireFlashBagTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Flash/AutoExpireFlashBagTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Flash/FlashBagTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Flash/FlashBagTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/SessionTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/SessionTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/MemcacheSessionHandlerTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/MemcacheSessionHandlerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/MemcachedSessionHandlerTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/MemcachedSessionHandlerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/MongoDbSessionHandlerTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/MongoDbSessionHandlerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/NativeFileSessionHandlerTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/NativeFileSessionHandlerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/NativeSessionHandlerTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/NativeSessionHandlerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/NullSessionHandlerTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/NullSessionHandlerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/PdoSessionHandlerTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/PdoSessionHandlerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/WriteCheckSessionHandlerTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Handler/WriteCheckSessionHandlerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/MetadataBagTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/MetadataBagTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/MockArraySessionStorageTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/MockArraySessionStorageTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/MockFileSessionStorageTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/MockFileSessionStorageTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/NativeSessionStorageTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/NativeSessionStorageTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/PhpBridgeSessionStorageTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/PhpBridgeSessionStorageTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Proxy/AbstractProxyTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Proxy/AbstractProxyTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Proxy/NativeProxyTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Proxy/NativeProxyTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Proxy/SessionHandlerProxyTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/Session/Storage/Proxy/SessionHandlerProxyTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/StreamedResponseTest.php b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/StreamedResponseTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/schema/http-status-codes.rng b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/schema/http-status-codes.rng old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/schema/iana-registry.rng b/plugin/LiveChat/ratchet/symfony/http-foundation/Tests/schema/iana-registry.rng old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/composer.json b/plugin/LiveChat/ratchet/symfony/http-foundation/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/http-foundation/phpunit.xml.dist b/plugin/LiveChat/ratchet/symfony/http-foundation/phpunit.xml.dist old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/LICENSE b/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/Mbstring.php b/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/Mbstring.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/README.md b/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php b/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/Resources/unidata/upperCase.php b/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/Resources/unidata/upperCase.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/bootstrap.php b/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/bootstrap.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/composer.json b/plugin/LiveChat/ratchet/symfony/polyfill-mbstring/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/.gitignore b/plugin/LiveChat/ratchet/symfony/routing/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Annotation/Route.php b/plugin/LiveChat/ratchet/symfony/routing/Annotation/Route.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/CHANGELOG.md b/plugin/LiveChat/ratchet/symfony/routing/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/CompiledRoute.php b/plugin/LiveChat/ratchet/symfony/routing/CompiledRoute.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/DependencyInjection/RoutingResolverPass.php b/plugin/LiveChat/ratchet/symfony/routing/DependencyInjection/RoutingResolverPass.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Exception/ExceptionInterface.php b/plugin/LiveChat/ratchet/symfony/routing/Exception/ExceptionInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Exception/InvalidParameterException.php b/plugin/LiveChat/ratchet/symfony/routing/Exception/InvalidParameterException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Exception/MethodNotAllowedException.php b/plugin/LiveChat/ratchet/symfony/routing/Exception/MethodNotAllowedException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Exception/MissingMandatoryParametersException.php b/plugin/LiveChat/ratchet/symfony/routing/Exception/MissingMandatoryParametersException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Exception/ResourceNotFoundException.php b/plugin/LiveChat/ratchet/symfony/routing/Exception/ResourceNotFoundException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Exception/RouteNotFoundException.php b/plugin/LiveChat/ratchet/symfony/routing/Exception/RouteNotFoundException.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Generator/ConfigurableRequirementsInterface.php b/plugin/LiveChat/ratchet/symfony/routing/Generator/ConfigurableRequirementsInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Generator/Dumper/GeneratorDumper.php b/plugin/LiveChat/ratchet/symfony/routing/Generator/Dumper/GeneratorDumper.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Generator/Dumper/GeneratorDumperInterface.php b/plugin/LiveChat/ratchet/symfony/routing/Generator/Dumper/GeneratorDumperInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Generator/Dumper/PhpGeneratorDumper.php b/plugin/LiveChat/ratchet/symfony/routing/Generator/Dumper/PhpGeneratorDumper.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Generator/UrlGenerator.php b/plugin/LiveChat/ratchet/symfony/routing/Generator/UrlGenerator.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Generator/UrlGeneratorInterface.php b/plugin/LiveChat/ratchet/symfony/routing/Generator/UrlGeneratorInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/LICENSE b/plugin/LiveChat/ratchet/symfony/routing/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Loader/AnnotationClassLoader.php b/plugin/LiveChat/ratchet/symfony/routing/Loader/AnnotationClassLoader.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Loader/AnnotationDirectoryLoader.php b/plugin/LiveChat/ratchet/symfony/routing/Loader/AnnotationDirectoryLoader.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Loader/AnnotationFileLoader.php b/plugin/LiveChat/ratchet/symfony/routing/Loader/AnnotationFileLoader.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Loader/ClosureLoader.php b/plugin/LiveChat/ratchet/symfony/routing/Loader/ClosureLoader.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Loader/DependencyInjection/ServiceRouterLoader.php b/plugin/LiveChat/ratchet/symfony/routing/Loader/DependencyInjection/ServiceRouterLoader.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Loader/DirectoryLoader.php b/plugin/LiveChat/ratchet/symfony/routing/Loader/DirectoryLoader.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Loader/ObjectRouteLoader.php b/plugin/LiveChat/ratchet/symfony/routing/Loader/ObjectRouteLoader.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Loader/PhpFileLoader.php b/plugin/LiveChat/ratchet/symfony/routing/Loader/PhpFileLoader.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Loader/XmlFileLoader.php b/plugin/LiveChat/ratchet/symfony/routing/Loader/XmlFileLoader.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Loader/YamlFileLoader.php b/plugin/LiveChat/ratchet/symfony/routing/Loader/YamlFileLoader.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Loader/schema/routing/routing-1.0.xsd b/plugin/LiveChat/ratchet/symfony/routing/Loader/schema/routing/routing-1.0.xsd old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Matcher/Dumper/DumperCollection.php b/plugin/LiveChat/ratchet/symfony/routing/Matcher/Dumper/DumperCollection.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Matcher/Dumper/DumperRoute.php b/plugin/LiveChat/ratchet/symfony/routing/Matcher/Dumper/DumperRoute.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Matcher/Dumper/MatcherDumper.php b/plugin/LiveChat/ratchet/symfony/routing/Matcher/Dumper/MatcherDumper.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php b/plugin/LiveChat/ratchet/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php b/plugin/LiveChat/ratchet/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Matcher/Dumper/StaticPrefixCollection.php b/plugin/LiveChat/ratchet/symfony/routing/Matcher/Dumper/StaticPrefixCollection.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Matcher/RedirectableUrlMatcher.php b/plugin/LiveChat/ratchet/symfony/routing/Matcher/RedirectableUrlMatcher.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php b/plugin/LiveChat/ratchet/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Matcher/RequestMatcherInterface.php b/plugin/LiveChat/ratchet/symfony/routing/Matcher/RequestMatcherInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Matcher/TraceableUrlMatcher.php b/plugin/LiveChat/ratchet/symfony/routing/Matcher/TraceableUrlMatcher.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Matcher/UrlMatcher.php b/plugin/LiveChat/ratchet/symfony/routing/Matcher/UrlMatcher.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Matcher/UrlMatcherInterface.php b/plugin/LiveChat/ratchet/symfony/routing/Matcher/UrlMatcherInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/README.md b/plugin/LiveChat/ratchet/symfony/routing/README.md old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/RequestContext.php b/plugin/LiveChat/ratchet/symfony/routing/RequestContext.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/RequestContextAwareInterface.php b/plugin/LiveChat/ratchet/symfony/routing/RequestContextAwareInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Route.php b/plugin/LiveChat/ratchet/symfony/routing/Route.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/RouteCollection.php b/plugin/LiveChat/ratchet/symfony/routing/RouteCollection.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/RouteCollectionBuilder.php b/plugin/LiveChat/ratchet/symfony/routing/RouteCollectionBuilder.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/RouteCompiler.php b/plugin/LiveChat/ratchet/symfony/routing/RouteCompiler.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/RouteCompilerInterface.php b/plugin/LiveChat/ratchet/symfony/routing/RouteCompilerInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Router.php b/plugin/LiveChat/ratchet/symfony/routing/Router.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/RouterInterface.php b/plugin/LiveChat/ratchet/symfony/routing/RouterInterface.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Annotation/RouteTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Annotation/RouteTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/CompiledRouteTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/CompiledRouteTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/DependencyInjection/RoutingResolverPassTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/DependencyInjection/RoutingResolverPassTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/AnnotatedClasses/AbstractClass.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/AnnotatedClasses/AbstractClass.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/AnnotatedClasses/BarClass.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/AnnotatedClasses/BarClass.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/AnnotatedClasses/BazClass.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/AnnotatedClasses/BazClass.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/AnnotatedClasses/FooClass.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/AnnotatedClasses/FooClass.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/AnnotatedClasses/FooTrait.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/AnnotatedClasses/FooTrait.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/CustomCompiledRoute.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/CustomCompiledRoute.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/CustomRouteCompiler.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/CustomRouteCompiler.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/CustomXmlFileLoader.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/CustomXmlFileLoader.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/OtherAnnotatedClasses/NoStartTagClass.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/OtherAnnotatedClasses/NoStartTagClass.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/OtherAnnotatedClasses/VariadicClass.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/OtherAnnotatedClasses/VariadicClass.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/RedirectableUrlMatcher.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/RedirectableUrlMatcher.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/annotated.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/annotated.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/bad_format.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/bad_format.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/bar.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/bar.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/directory/recurse/routes1.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/directory/recurse/routes1.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/directory/recurse/routes2.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/directory/recurse/routes2.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/directory/routes3.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/directory/routes3.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/directory_import/import.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/directory_import/import.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher1.apache b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher1.apache old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher1.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher1.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher2.apache b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher2.apache old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher2.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher2.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher3.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher3.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher4.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher4.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher5.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher5.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher6.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher6.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher7.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/dumper/url_matcher7.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/empty.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/empty.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/file_resource.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/file_resource.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/foo.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/foo.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/foo1.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/foo1.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/incomplete.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/incomplete.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/list_defaults.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/list_defaults.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/list_in_list_defaults.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/list_in_list_defaults.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/list_in_map_defaults.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/list_in_map_defaults.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/list_null_values.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/list_null_values.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/map_defaults.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/map_defaults.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/map_in_list_defaults.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/map_in_list_defaults.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/map_in_map_defaults.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/map_in_map_defaults.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/map_null_values.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/map_null_values.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/missing_id.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/missing_id.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/missing_path.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/missing_path.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/namespaceprefix.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/namespaceprefix.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonesense_resource_plus_path.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonesense_resource_plus_path.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonesense_type_without_resource.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonesense_type_without_resource.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonvalid.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonvalid.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonvalid.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonvalid.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonvalid2.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonvalid2.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonvalidkeys.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonvalidkeys.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonvalidnode.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonvalidnode.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonvalidroute.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/nonvalidroute.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/null_values.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/null_values.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/scalar_defaults.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/scalar_defaults.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/special_route_name.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/special_route_name.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/validpattern.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/validpattern.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/validpattern.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/validpattern.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/validpattern.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/validpattern.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/validresource.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/validresource.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/validresource.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/validresource.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/validresource.yml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/validresource.yml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/with_define_path_variable.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/with_define_path_variable.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/withdoctype.xml b/plugin/LiveChat/ratchet/symfony/routing/Tests/Fixtures/withdoctype.xml old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Generator/Dumper/PhpGeneratorDumperTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Generator/Dumper/PhpGeneratorDumperTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Generator/UrlGeneratorTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Generator/UrlGeneratorTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/AbstractAnnotationLoaderTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/AbstractAnnotationLoaderTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/AnnotationClassLoaderTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/AnnotationClassLoaderTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/AnnotationDirectoryLoaderTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/AnnotationDirectoryLoaderTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/AnnotationFileLoaderTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/AnnotationFileLoaderTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/ClosureLoaderTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/ClosureLoaderTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/DirectoryLoaderTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/DirectoryLoaderTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/ObjectRouteLoaderTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/ObjectRouteLoaderTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/PhpFileLoaderTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/PhpFileLoaderTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/XmlFileLoaderTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/XmlFileLoaderTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/YamlFileLoaderTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Loader/YamlFileLoaderTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Matcher/Dumper/DumperCollectionTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Matcher/Dumper/DumperCollectionTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Matcher/Dumper/PhpMatcherDumperTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Matcher/Dumper/PhpMatcherDumperTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Matcher/Dumper/StaticPrefixCollectionTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Matcher/Dumper/StaticPrefixCollectionTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Matcher/RedirectableUrlMatcherTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Matcher/RedirectableUrlMatcherTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Matcher/TraceableUrlMatcherTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Matcher/TraceableUrlMatcherTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/Matcher/UrlMatcherTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/Matcher/UrlMatcherTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/RequestContextTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/RequestContextTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/RouteCollectionBuilderTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/RouteCollectionBuilderTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/RouteCollectionTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/RouteCollectionTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/RouteCompilerTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/RouteCompilerTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/RouteTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/RouteTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/Tests/RouterTest.php b/plugin/LiveChat/ratchet/symfony/routing/Tests/RouterTest.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/composer.json b/plugin/LiveChat/ratchet/symfony/routing/composer.json old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/ratchet/symfony/routing/phpunit.xml.dist b/plugin/LiveChat/ratchet/symfony/routing/phpunit.xml.dist old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/view/notification.wav b/plugin/LiveChat/view/notification.wav old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/view/panel.php b/plugin/LiveChat/view/panel.php old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/view/script.js b/plugin/LiveChat/view/script.js old mode 100755 new mode 100644 diff --git a/plugin/LiveChat/view/style.css b/plugin/LiveChat/view/style.css old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/LiveLinks.php b/plugin/LiveLinks/LiveLinks.php old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/Objects/LiveLinksTable.php b/plugin/LiveLinks/Objects/LiveLinksTable.php old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/docs/LiveLinkModel.mwb b/plugin/LiveLinks/docs/LiveLinkModel.mwb old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/docs/LiveLinkModel.mwb.bak b/plugin/LiveLinks/docs/LiveLinkModel.mwb.bak old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/getImage.php b/plugin/LiveLinks/getImage.php old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/index.php b/plugin/LiveLinks/index.php old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/install/install.sql b/plugin/LiveLinks/install/install.sql old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/view/Live.php b/plugin/LiveLinks/view/Live.php old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/view/addLiveLink.php b/plugin/LiveLinks/view/addLiveLink.php old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/view/delete_liveLink.json.php b/plugin/LiveLinks/view/delete_liveLink.json.php old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/view/extraItem.html b/plugin/LiveLinks/view/extraItem.html old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/view/liveLinks.json.php b/plugin/LiveLinks/view/liveLinks.json.php old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/view/liveVideo.php b/plugin/LiveLinks/view/liveVideo.php old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/view/menuItem.html b/plugin/LiveLinks/view/menuItem.html old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/view/menuRight.php b/plugin/LiveLinks/view/menuRight.php old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/view/panel.php b/plugin/LiveLinks/view/panel.php old mode 100755 new mode 100644 diff --git a/plugin/LiveLinks/view/videoEmbeded.php b/plugin/LiveLinks/view/videoEmbeded.php old mode 100755 new mode 100644 diff --git a/plugin/LoginFacebook/LoginFacebook.php b/plugin/LoginFacebook/LoginFacebook.php old mode 100755 new mode 100644 diff --git a/plugin/LoginGoogle/LoginGoogle.php b/plugin/LoginGoogle/LoginGoogle.php old mode 100755 new mode 100644 diff --git a/plugin/LoginLinkedin/LoginLinkedin.php b/plugin/LoginLinkedin/LoginLinkedin.php old mode 100755 new mode 100644 diff --git a/plugin/LoginTwitter/LoginTwitter.php b/plugin/LoginTwitter/LoginTwitter.php old mode 100755 new mode 100644 diff --git a/plugin/LoginYahoo/LoginYahoo.php b/plugin/LoginYahoo/LoginYahoo.php old mode 100755 new mode 100644 diff --git a/plugin/MobileManager/MobileManager.php b/plugin/MobileManager/MobileManager.php old mode 100755 new mode 100644 diff --git a/plugin/MobileManager/oauth2.php b/plugin/MobileManager/oauth2.php old mode 100755 new mode 100644 diff --git a/plugin/MobileManager/oauth2Error.php b/plugin/MobileManager/oauth2Error.php old mode 100755 new mode 100644 diff --git a/plugin/MobileManager/oauth2Success.php b/plugin/MobileManager/oauth2Success.php old mode 100755 new mode 100644 diff --git a/plugin/MobileManager/upload.php b/plugin/MobileManager/upload.php old mode 100755 new mode 100644 diff --git a/plugin/NextButton/NextButton.php b/plugin/NextButton/NextButton.php old mode 100755 new mode 100644 diff --git a/plugin/NextButton/script.js b/plugin/NextButton/script.js old mode 100755 new mode 100644 diff --git a/plugin/NextButton/style.css b/plugin/NextButton/style.css old mode 100755 new mode 100644 diff --git a/plugin/OptionsTest/OptionsTest.php b/plugin/OptionsTest/OptionsTest.php old mode 100755 new mode 100644 diff --git a/plugin/OptionsTest/home.php b/plugin/OptionsTest/home.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/PayPalYPT.php b/plugin/PayPalYPT/PayPalYPT.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/bootstrap.php b/plugin/PayPalYPT/bootstrap.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/composer.json b/plugin/PayPalYPT/composer.json old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/composer.lock b/plugin/PayPalYPT/composer.lock old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/ipn.php b/plugin/PayPalYPT/ipn.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/autoload.php b/plugin/PayPalYPT/vendor/autoload.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/composer/ClassLoader.php b/plugin/PayPalYPT/vendor/composer/ClassLoader.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/composer/LICENSE b/plugin/PayPalYPT/vendor/composer/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/composer/autoload_classmap.php b/plugin/PayPalYPT/vendor/composer/autoload_classmap.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/composer/autoload_namespaces.php b/plugin/PayPalYPT/vendor/composer/autoload_namespaces.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/composer/autoload_psr4.php b/plugin/PayPalYPT/vendor/composer/autoload_psr4.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/composer/autoload_real.php b/plugin/PayPalYPT/vendor/composer/autoload_real.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/composer/autoload_static.php b/plugin/PayPalYPT/vendor/composer/autoload_static.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/composer/installed.json b/plugin/PayPalYPT/vendor/composer/installed.json old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/.gitattributes b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/.gitattributes old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/.github/ISSUE_TEMPLATE.md b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/.github/ISSUE_TEMPLATE.md old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/.gitignore b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/CHANGELOG.md b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/CHANGELOG.md old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/LICENSE b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/README.md b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/README.md old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/composer.json b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/composer.json old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Address.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Address.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Agreement.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Agreement.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementDetails.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementDetails.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementStateDescriptor.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementStateDescriptor.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementTransaction.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementTransaction.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementTransactions.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementTransactions.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/AlternatePayment.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/AlternatePayment.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Amount.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Amount.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Authorization.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Authorization.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/BankAccount.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/BankAccount.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/BankAccountsList.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/BankAccountsList.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/BankToken.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/BankToken.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/BaseAddress.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/BaseAddress.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Billing.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Billing.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/BillingAgreementToken.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/BillingAgreementToken.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/BillingInfo.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/BillingInfo.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CancelNotification.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CancelNotification.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Capture.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Capture.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CarrierAccount.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CarrierAccount.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CarrierAccountToken.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CarrierAccountToken.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CartBase.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CartBase.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ChargeModel.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ChargeModel.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Cost.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Cost.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CountryCode.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CountryCode.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CreateProfileResponse.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CreateProfileResponse.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Credit.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Credit.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCard.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCard.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCardHistory.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCardHistory.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCardList.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCardList.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCardToken.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCardToken.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditFinancingOffered.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditFinancingOffered.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Currency.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Currency.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CurrencyConversion.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CurrencyConversion.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CustomAmount.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/CustomAmount.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/DetailedRefund.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/DetailedRefund.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Details.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Details.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Error.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Error.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ErrorDetails.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ErrorDetails.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ExtendedBankAccount.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ExtendedBankAccount.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ExternalFunding.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ExternalFunding.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FileAttachment.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FileAttachment.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FlowConfig.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FlowConfig.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FmfDetails.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FmfDetails.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingDetail.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingDetail.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingInstrument.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingInstrument.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingOption.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingOption.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingSource.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingSource.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FuturePayment.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/FuturePayment.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/HyperSchema.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/HyperSchema.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Image.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Image.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Incentive.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Incentive.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InputFields.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InputFields.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InstallmentInfo.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InstallmentInfo.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InstallmentOption.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InstallmentOption.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Invoice.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Invoice.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceAddress.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceAddress.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceItem.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceItem.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceNumber.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceNumber.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceSearchResponse.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceSearchResponse.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Item.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Item.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ItemList.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ItemList.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Links.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Links.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Measurement.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Measurement.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/MerchantInfo.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/MerchantInfo.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/MerchantPreferences.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/MerchantPreferences.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Metadata.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Metadata.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/NameValuePair.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/NameValuePair.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Notification.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Notification.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdAddress.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdAddress.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdError.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdError.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdSession.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdSession.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdTokeninfo.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdTokeninfo.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdUserinfo.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdUserinfo.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Order.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Order.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/OverrideChargeModel.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/OverrideChargeModel.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Participant.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Participant.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Patch.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Patch.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PatchRequest.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PatchRequest.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Payee.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Payee.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Payer.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Payer.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PayerInfo.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PayerInfo.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Payment.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Payment.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentCard.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentCard.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentCardToken.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentCardToken.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentDefinition.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentDefinition.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentDetail.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentDetail.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentExecution.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentExecution.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentHistory.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentHistory.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentInstruction.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentInstruction.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentOptions.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentOptions.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentSummary.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentSummary.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentTerm.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentTerm.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Payout.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Payout.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutBatch.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutBatch.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutBatchHeader.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutBatchHeader.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutItem.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutItem.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutItemDetails.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutItemDetails.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutSenderBatchHeader.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutSenderBatchHeader.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Phone.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Phone.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Plan.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Plan.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PlanList.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PlanList.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PotentialPayerInfo.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PotentialPayerInfo.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Presentation.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Presentation.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PrivateLabelCard.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/PrivateLabelCard.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ProcessorResponse.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ProcessorResponse.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/RecipientBankingInstruction.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/RecipientBankingInstruction.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/RedirectUrls.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/RedirectUrls.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Refund.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Refund.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/RefundDetail.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/RefundDetail.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/RefundRequest.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/RefundRequest.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/RelatedResources.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/RelatedResources.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Sale.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Sale.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Search.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Search.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ShippingAddress.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ShippingAddress.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ShippingCost.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ShippingCost.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ShippingInfo.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ShippingInfo.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Tax.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Tax.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Template.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Template.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/TemplateData.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/TemplateData.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/TemplateSettings.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/TemplateSettings.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/TemplateSettingsMetadata.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/TemplateSettingsMetadata.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Templates.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Templates.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Terms.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Terms.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Transaction.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Transaction.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/TransactionBase.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/TransactionBase.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Transactions.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Transactions.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/VerifyWebhookSignature.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/VerifyWebhookSignature.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/VerifyWebhookSignatureResponse.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/VerifyWebhookSignatureResponse.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/WebProfile.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/WebProfile.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Webhook.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/Webhook.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEvent.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEvent.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEventList.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEventList.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEventType.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEventType.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEventTypeList.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEventTypeList.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookList.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookList.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Auth/OAuthTokenCredential.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Auth/OAuthTokenCredential.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Cache/AuthorizationCache.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Cache/AuthorizationCache.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Common/ArrayUtil.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Common/ArrayUtil.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Common/PayPalModel.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Common/PayPalModel.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Common/PayPalResourceModel.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Common/PayPalResourceModel.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Common/PayPalUserAgent.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Common/PayPalUserAgent.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Common/ReflectionUtil.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Common/ReflectionUtil.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Converter/FormatConverter.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Converter/FormatConverter.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalConfigManager.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalConfigManager.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalConstants.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalConstants.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalCredentialManager.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalCredentialManager.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalHttpConfig.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalHttpConfig.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalHttpConnection.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalHttpConnection.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalLoggingManager.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalLoggingManager.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/cacert.pem b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Core/cacert.pem old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalConfigurationException.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalConfigurationException.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalConnectionException.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalConnectionException.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalInvalidCredentialException.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalInvalidCredentialException.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalMissingCredentialException.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalMissingCredentialException.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Handler/IPayPalHandler.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Handler/IPayPalHandler.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Handler/OauthHandler.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Handler/OauthHandler.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Handler/RestHandler.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Handler/RestHandler.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Log/PayPalDefaultLogFactory.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Log/PayPalDefaultLogFactory.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Log/PayPalLogFactory.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Log/PayPalLogFactory.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Log/PayPalLogger.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Log/PayPalLogger.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Rest/ApiContext.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Rest/ApiContext.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Rest/IResource.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Rest/IResource.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Security/Cipher.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Security/Cipher.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Transport/PayPalRestCall.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Transport/PayPalRestCall.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Validation/ArgumentValidator.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Validation/ArgumentValidator.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Validation/JsonValidator.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Validation/JsonValidator.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Validation/NumericValidator.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Validation/NumericValidator.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Validation/UrlValidator.php b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/lib/PayPal/Validation/UrlValidator.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/phpunit.integration.xml b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/phpunit.integration.xml old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/phpunit.xml b/plugin/PayPalYPT/vendor/paypal/rest-api-sdk-php/phpunit.xml old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/psr/log/.gitignore b/plugin/PayPalYPT/vendor/psr/log/.gitignore old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/psr/log/LICENSE b/plugin/PayPalYPT/vendor/psr/log/LICENSE old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/psr/log/Psr/Log/AbstractLogger.php b/plugin/PayPalYPT/vendor/psr/log/Psr/Log/AbstractLogger.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/psr/log/Psr/Log/InvalidArgumentException.php b/plugin/PayPalYPT/vendor/psr/log/Psr/Log/InvalidArgumentException.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/psr/log/Psr/Log/LogLevel.php b/plugin/PayPalYPT/vendor/psr/log/Psr/Log/LogLevel.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/psr/log/Psr/Log/LoggerAwareInterface.php b/plugin/PayPalYPT/vendor/psr/log/Psr/Log/LoggerAwareInterface.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/psr/log/Psr/Log/LoggerAwareTrait.php b/plugin/PayPalYPT/vendor/psr/log/Psr/Log/LoggerAwareTrait.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/psr/log/Psr/Log/LoggerInterface.php b/plugin/PayPalYPT/vendor/psr/log/Psr/Log/LoggerInterface.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/psr/log/Psr/Log/LoggerTrait.php b/plugin/PayPalYPT/vendor/psr/log/Psr/Log/LoggerTrait.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/psr/log/Psr/Log/NullLogger.php b/plugin/PayPalYPT/vendor/psr/log/Psr/Log/NullLogger.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php b/plugin/PayPalYPT/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/psr/log/README.md b/plugin/PayPalYPT/vendor/psr/log/README.md old mode 100755 new mode 100644 diff --git a/plugin/PayPalYPT/vendor/psr/log/composer.json b/plugin/PayPalYPT/vendor/psr/log/composer.json old mode 100755 new mode 100644 diff --git a/plugin/PlayerSkins/PlayerSkins.php b/plugin/PlayerSkins/PlayerSkins.php old mode 100755 new mode 100644 diff --git a/plugin/PlayerSkins/skins/facebook.css b/plugin/PlayerSkins/skins/facebook.css old mode 100755 new mode 100644 diff --git a/plugin/PlayerSkins/skins/style1.css b/plugin/PlayerSkins/skins/style1.css old mode 100755 new mode 100644 diff --git a/plugin/PlayerSkins/skins/style2.css b/plugin/PlayerSkins/skins/style2.css old mode 100755 new mode 100644 diff --git a/plugin/PlayerSkins/skins/style3.css b/plugin/PlayerSkins/skins/style3.css old mode 100755 new mode 100644 diff --git a/plugin/PlayerSkins/skins/tech.css b/plugin/PlayerSkins/skins/tech.css old mode 100755 new mode 100644 diff --git a/plugin/PlayerSkins/skins/twitch.css b/plugin/PlayerSkins/skins/twitch.css old mode 100755 new mode 100644 diff --git a/plugin/PlayerSkins/skins/twitter.css b/plugin/PlayerSkins/skins/twitter.css old mode 100755 new mode 100644 diff --git a/plugin/PlayerSkins/skins/youtube.css b/plugin/PlayerSkins/skins/youtube.css old mode 100755 new mode 100644 diff --git a/plugin/PlayerSkins/skins/youtube2.css b/plugin/PlayerSkins/skins/youtube2.css old mode 100755 new mode 100644 diff --git a/plugin/Plugin.abstract.php b/plugin/Plugin.abstract.php old mode 100755 new mode 100644 diff --git a/plugin/PredefinedCategory/PredefinedCategory.php b/plugin/PredefinedCategory/PredefinedCategory.php old mode 100755 new mode 100644 diff --git a/plugin/PredefinedCategory/page/editor.php b/plugin/PredefinedCategory/page/editor.php old mode 100755 new mode 100644 diff --git a/plugin/PredefinedCategory/page/editorSave.php b/plugin/PredefinedCategory/page/editorSave.php old mode 100755 new mode 100644 diff --git a/plugin/PredefinedCategory/pluginMenu.html b/plugin/PredefinedCategory/pluginMenu.html old mode 100755 new mode 100644 diff --git a/plugin/ReportVideo/Objects/videos_reported.php b/plugin/ReportVideo/Objects/videos_reported.php old mode 100755 new mode 100644 diff --git a/plugin/ReportVideo/ReportVideo.php b/plugin/ReportVideo/ReportVideo.php old mode 100755 new mode 100644 diff --git a/plugin/ReportVideo/actionButton.php b/plugin/ReportVideo/actionButton.php old mode 100755 new mode 100644 diff --git a/plugin/ReportVideo/install/install.sql b/plugin/ReportVideo/install/install.sql old mode 100755 new mode 100644 diff --git a/plugin/ReportVideo/report.json.php b/plugin/ReportVideo/report.json.php old mode 100755 new mode 100644 diff --git a/plugin/ReportVideo/template.html b/plugin/ReportVideo/template.html old mode 100755 new mode 100644 diff --git a/plugin/SeekButton/SeekButton.php b/plugin/SeekButton/SeekButton.php old mode 100755 new mode 100644 diff --git a/plugin/SeekButton/videojs-seek-buttons/lang/de.js b/plugin/SeekButton/videojs-seek-buttons/lang/de.js old mode 100755 new mode 100644 diff --git a/plugin/SeekButton/videojs-seek-buttons/lang/en.js b/plugin/SeekButton/videojs-seek-buttons/lang/en.js old mode 100755 new mode 100644 diff --git a/plugin/SeekButton/videojs-seek-buttons/lang/it.js b/plugin/SeekButton/videojs-seek-buttons/lang/it.js old mode 100755 new mode 100644 diff --git a/plugin/SeekButton/videojs-seek-buttons/videojs-seek-buttons.cjs.js b/plugin/SeekButton/videojs-seek-buttons/videojs-seek-buttons.cjs.js old mode 100755 new mode 100644 diff --git a/plugin/SeekButton/videojs-seek-buttons/videojs-seek-buttons.css b/plugin/SeekButton/videojs-seek-buttons/videojs-seek-buttons.css old mode 100755 new mode 100644 diff --git a/plugin/SeekButton/videojs-seek-buttons/videojs-seek-buttons.es.js b/plugin/SeekButton/videojs-seek-buttons/videojs-seek-buttons.es.js old mode 100755 new mode 100644 diff --git a/plugin/SeekButton/videojs-seek-buttons/videojs-seek-buttons.js b/plugin/SeekButton/videojs-seek-buttons/videojs-seek-buttons.js old mode 100755 new mode 100644 diff --git a/plugin/SeekButton/videojs-seek-buttons/videojs-seek-buttons.min.js b/plugin/SeekButton/videojs-seek-buttons/videojs-seek-buttons.min.js old mode 100755 new mode 100644 diff --git a/plugin/ShareSocialButtonsOnEmbed/ShareSocialButtonsOnEmbed.php b/plugin/ShareSocialButtonsOnEmbed/ShareSocialButtonsOnEmbed.php old mode 100755 new mode 100644 diff --git a/plugin/ShareSocialButtonsOnEmbed/script.php b/plugin/ShareSocialButtonsOnEmbed/script.php old mode 100755 new mode 100644 diff --git a/plugin/TheaterButton/TheaterButton.php b/plugin/TheaterButton/TheaterButton.php old mode 100755 new mode 100644 diff --git a/plugin/TheaterButton/addButton.js b/plugin/TheaterButton/addButton.js old mode 100755 new mode 100644 diff --git a/plugin/TheaterButton/script.js b/plugin/TheaterButton/script.js old mode 100755 new mode 100644 diff --git a/plugin/TheaterButton/style.css b/plugin/TheaterButton/style.css old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/HTMLMenuLeft.php b/plugin/TopMenu/HTMLMenuLeft.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/HTMLMenuRight.php b/plugin/TopMenu/HTMLMenuRight.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/Objects/Menu.php b/plugin/TopMenu/Objects/Menu.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/Objects/MenuItem.php b/plugin/TopMenu/Objects/MenuItem.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/TopMenu.php b/plugin/TopMenu/TopMenu.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/index.php b/plugin/TopMenu/index.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/install/install.sql b/plugin/TopMenu/install/install.sql old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/menuDelete.json.php b/plugin/TopMenu/menuDelete.json.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/menuItemDelete.json.php b/plugin/TopMenu/menuItemDelete.json.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/menuItemSave.json.php b/plugin/TopMenu/menuItemSave.json.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/menuItemSort.json.php b/plugin/TopMenu/menuItemSort.json.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/menuItems.json.php b/plugin/TopMenu/menuItems.json.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/menuSave.json.php b/plugin/TopMenu/menuSave.json.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/menus.json.php b/plugin/TopMenu/menus.json.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/page/editor.php b/plugin/TopMenu/page/editor.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/pluginMenu.html b/plugin/TopMenu/pluginMenu.html old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/seo.php b/plugin/TopMenu/seo.php old mode 100755 new mode 100644 diff --git a/plugin/TopMenu/style.css b/plugin/TopMenu/style.css old mode 100755 new mode 100644 diff --git a/plugin/User_Location/Objects/IP2Location.php b/plugin/User_Location/Objects/IP2Location.php old mode 100755 new mode 100644 diff --git a/plugin/User_Location/User_Location.php b/plugin/User_Location/User_Location.php old mode 100755 new mode 100644 diff --git a/plugin/User_Location/cities.json.php b/plugin/User_Location/cities.json.php old mode 100755 new mode 100644 diff --git a/plugin/User_Location/install/install.zip b/plugin/User_Location/install/install.zip old mode 100755 new mode 100644 diff --git a/plugin/User_Location/regions.json.php b/plugin/User_Location/regions.json.php old mode 100755 new mode 100644 diff --git a/plugin/VR360/Objects/VideosVR360.php b/plugin/VR360/Objects/VideosVR360.php old mode 100755 new mode 100644 diff --git a/plugin/VR360/VR360.php b/plugin/VR360/VR360.php old mode 100755 new mode 100644 diff --git a/plugin/VR360/install/install.sql b/plugin/VR360/install/install.sql old mode 100755 new mode 100644 diff --git a/plugin/VR360/toogleVR360.php b/plugin/VR360/toogleVR360.php old mode 100755 new mode 100644 diff --git a/plugin/VR360/videojs-panorama/three.min.js b/plugin/VR360/videojs-panorama/three.min.js old mode 100755 new mode 100644 diff --git a/plugin/VR360/videojs-panorama/videojs-panorama.common.js b/plugin/VR360/videojs-panorama/videojs-panorama.common.js old mode 100755 new mode 100644 diff --git a/plugin/VR360/videojs-panorama/videojs-panorama.css b/plugin/VR360/videojs-panorama/videojs-panorama.css old mode 100755 new mode 100644 diff --git a/plugin/VR360/videojs-panorama/videojs-panorama.es6.js b/plugin/VR360/videojs-panorama/videojs-panorama.es6.js old mode 100755 new mode 100644 diff --git a/plugin/VR360/videojs-panorama/videojs-panorama.min.css b/plugin/VR360/videojs-panorama/videojs-panorama.min.css old mode 100755 new mode 100644 diff --git a/plugin/VR360/videojs-panorama/videojs-panorama.v4.js b/plugin/VR360/videojs-panorama/videojs-panorama.v4.js old mode 100755 new mode 100644 diff --git a/plugin/VR360/videojs-panorama/videojs-panorama.v4.min.js b/plugin/VR360/videojs-panorama/videojs-panorama.v4.min.js old mode 100755 new mode 100644 diff --git a/plugin/VR360/videojs-panorama/videojs-panorama.v5.js b/plugin/VR360/videojs-panorama/videojs-panorama.v5.js old mode 100755 new mode 100644 diff --git a/plugin/VR360/videojs-panorama/videojs-panorama.v5.min.js b/plugin/VR360/videojs-panorama/videojs-panorama.v5.min.js old mode 100755 new mode 100644 diff --git a/plugin/VR360/view/menuRight.php b/plugin/VR360/view/menuRight.php old mode 100755 new mode 100644 diff --git a/plugin/VideoLogoOverlay/VideoLogoOverlay.php b/plugin/VideoLogoOverlay/VideoLogoOverlay.php old mode 100755 new mode 100644 diff --git a/plugin/VideoLogoOverlay/page/editor.php b/plugin/VideoLogoOverlay/page/editor.php old mode 100755 new mode 100644 diff --git a/plugin/VideoLogoOverlay/page/editorSave.php b/plugin/VideoLogoOverlay/page/editorSave.php old mode 100755 new mode 100644 diff --git a/plugin/VideoLogoOverlay/pluginMenu.html b/plugin/VideoLogoOverlay/pluginMenu.html old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/Objects/Wallet.php b/plugin/YPTWallet/Objects/Wallet.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/Objects/Wallet_log.php b/plugin/YPTWallet/Objects/Wallet_log.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/YPTWallet.php b/plugin/YPTWallet/YPTWallet.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/YPTWalletPlugin.php b/plugin/YPTWallet/YPTWalletPlugin.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/install/install.sql b/plugin/YPTWallet/install/install.sql old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/install/update.sql b/plugin/YPTWallet/install/update.sql old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/plugins/YPTWalletPayPal/YPTWalletPayPal.php b/plugin/YPTWallet/plugins/YPTWalletPayPal/YPTWalletPayPal.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/plugins/YPTWalletPayPal/cancel_url.php b/plugin/YPTWallet/plugins/YPTWalletPayPal/cancel_url.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/plugins/YPTWalletPayPal/confirmButton.php b/plugin/YPTWallet/plugins/YPTWalletPayPal/confirmButton.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/plugins/YPTWalletPayPal/redirect_url.php b/plugin/YPTWallet/plugins/YPTWalletPayPal/redirect_url.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/plugins/YPTWalletPayPal/requestPayment.json.php b/plugin/YPTWallet/plugins/YPTWalletPayPal/requestPayment.json.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/plugins/YPTWalletPayPal/requestSubscription.json.php b/plugin/YPTWallet/plugins/YPTWalletPayPal/requestSubscription.json.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/template.html b/plugin/YPTWallet/template.html old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/addFunds.php b/plugin/YPTWallet/view/addFunds.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/adminManageWallets.php b/plugin/YPTWallet/view/adminManageWallets.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/changeLogStatus.json.php b/plugin/YPTWallet/view/changeLogStatus.json.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/configuration.php b/plugin/YPTWallet/view/configuration.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/history.php b/plugin/YPTWallet/view/history.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/log.json.php b/plugin/YPTWallet/view/log.json.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/manualAddFunds.json.php b/plugin/YPTWallet/view/manualAddFunds.json.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/manualAddFunds.php b/plugin/YPTWallet/view/manualAddFunds.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/manualWithdrawFunds.json.php b/plugin/YPTWallet/view/manualWithdrawFunds.json.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/manualWithdrawFunds.php b/plugin/YPTWallet/view/manualWithdrawFunds.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/menuRight.php b/plugin/YPTWallet/view/menuRight.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/pendingRequests.json.php b/plugin/YPTWallet/view/pendingRequests.json.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/pendingRequests.php b/plugin/YPTWallet/view/pendingRequests.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/saveBalance.php b/plugin/YPTWallet/view/saveBalance.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/saveConfiguration.php b/plugin/YPTWallet/view/saveConfiguration.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/transferFunds.json.php b/plugin/YPTWallet/view/transferFunds.json.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/transferFunds.php b/plugin/YPTWallet/view/transferFunds.php old mode 100755 new mode 100644 diff --git a/plugin/YPTWallet/view/users.json.php b/plugin/YPTWallet/view/users.json.php old mode 100755 new mode 100644 diff --git a/plugin/YouPHPFlix2/YouPHPFlix2.php b/plugin/YouPHPFlix2/YouPHPFlix2.php old mode 100755 new mode 100644 index 6c65a02f0c..a14c70c809 --- a/plugin/YouPHPFlix2/YouPHPFlix2.php +++ b/plugin/YouPHPFlix2/YouPHPFlix2.php @@ -5,7 +5,9 @@ require_once $global['systemRootPath'] . 'plugin/YouPHPTubePlugin.php'; class YouPHPFlix2 extends PluginAbstract { public function getDescription() { - return "Make the first page looks like a Netflix site"; + $txt = "Make the first page looks like a Netflix site"; + $help = "
Help"; + return $txt.$help; } public function getName() { diff --git a/plugin/YouPHPFlix2/view/BigVideo.php b/plugin/YouPHPFlix2/view/BigVideo.php old mode 100755 new mode 100644 diff --git a/plugin/YouPHPFlix2/view/css/style.css b/plugin/YouPHPFlix2/view/css/style.css old mode 100755 new mode 100644 diff --git a/plugin/YouPHPFlix2/view/js/flickity/flickity.css b/plugin/YouPHPFlix2/view/js/flickity/flickity.css old mode 100755 new mode 100644 diff --git a/plugin/YouPHPFlix2/view/js/flickity/flickity.min.css b/plugin/YouPHPFlix2/view/js/flickity/flickity.min.css old mode 100755 new mode 100644 diff --git a/plugin/YouPHPFlix2/view/js/flickity/flickity.pkgd.js b/plugin/YouPHPFlix2/view/js/flickity/flickity.pkgd.js old mode 100755 new mode 100644 diff --git a/plugin/YouPHPFlix2/view/js/flickity/flickity.pkgd.min.js b/plugin/YouPHPFlix2/view/js/flickity/flickity.pkgd.min.js old mode 100755 new mode 100644 diff --git a/plugin/YouPHPFlix2/view/js/script.js b/plugin/YouPHPFlix2/view/js/script.js old mode 100755 new mode 100644 diff --git a/plugin/YouPHPFlix2/view/modeFlix.php b/plugin/YouPHPFlix2/view/modeFlix.php old mode 100755 new mode 100644 diff --git a/plugin/YouPHPFlix2/view/row.php b/plugin/YouPHPFlix2/view/row.php old mode 100755 new mode 100644 diff --git a/plugin/YouPHPTubePlugin.php b/plugin/YouPHPTubePlugin.php old mode 100755 new mode 100644 diff --git a/view/js/Croppie/croppie.js b/view/js/Croppie/croppie.js old mode 100755 new mode 100644