From bfbeea645861845af3142205438c6dfbafb7aa9b Mon Sep 17 00:00:00 2001 From: Chris Boden Date: Thu, 25 Feb 2016 08:58:53 -0500 Subject: [PATCH] Remove 5.3 references --- .travis.yml | 1 - README.md | 6 ++---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index f0b9273..927d1d7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: php php: - - 5.3 - 5.4 - 5.5 - 5.6 diff --git a/README.md b/README.md index 5cc5976..2674282 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build Status](https://secure.travis-ci.org/ratchetphp/Ratchet.png?branch=master)](http://travis-ci.org/ratchetphp/Ratchet) [![Latest Stable Version](https://poser.pugx.org/cboden/ratchet/v/stable.png)](https://packagist.org/packages/cboden/ratchet) -A PHP 5.3 library for asynchronously serving WebSockets. +A PHP 5.4 library for asynchronously serving WebSockets. Build up your application through simple interfaces and re-use your application without changing any of its code just by combining different components. ##WebSocket Compliance @@ -19,8 +19,6 @@ To avoid proxy/firewall blockage it's recommended WebSockets are requested on po In order to do this, along with your sync web stack, you can either use a reverse proxy or two separate machines. You can find more details in the [server conf docs](http://socketo.me/docs/deploy#serverconfiguration). -PHP 5.3.9 (or higher) is required. If you have access, PHP 5.4 (or higher) is *highly* recommended for its performance improvements. - ### Documentation User and API documentation is available on Ratchet's website: http://socketo.me @@ -87,4 +85,4 @@ class MyChat implements MessageComponentInterface { var conn = new WebSocket('ws://localhost:8080/echo'); conn.onmessage = function(e) { console.log(e.data); }; conn.send('Hello Me!'); -``` \ No newline at end of file +```