Compare commits

..

No commits in common. "d77c7bcd07978f3b8bb879ce74056c2f75dd60a2" and "3e97459d3f591d6439ff7cae016e749335b9a047" have entirely different histories.

5 changed files with 6 additions and 16 deletions

View File

@ -8,11 +8,6 @@ CHANGELOG
--- ---
* 0.4.4 (2021-12-11)
* Correct and update dependencies for forward compatibility
* Added context for React Socket server to App
* Use non-deprecated Guzzle API calls
* 0.4.3 (2020-06-04) * 0.4.3 (2020-06-04)
* BF: Fixed interface acceptable regression in `App` * BF: Fixed interface acceptable regression in `App`
* Update RFC6455 library with latest fixes * Update RFC6455 library with latest fixes

View File

@ -1,4 +1,4 @@
Copyright (c) 2011 Chris Boden Copyright (c) 2011-2020 Chris Boden
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -7,11 +7,6 @@
A PHP library for asynchronously serving WebSockets. A PHP 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. Build up your application through simple interfaces and re-use your application without changing any of its code just by combining different components.
## Reviving Ratchet!
We're currently aiming to revive Ratchet to get it up to date with the latest versions and use this as a starting point for bigger updates to come.
We need your help to achieve this goal, see [ticket #1054](https://github.com/ratchetphp/Ratchet/issues/1054) for ways to help out. ❤️
## Requirements ## Requirements
Shell access is required and root access is recommended. Shell access is required and root access is recommended.

View File

@ -1,5 +1,5 @@
{ {
"name": "cboden/ratchet" "name": "minifets/ratchet"
, "type": "library" , "type": "library"
, "description": "PHP WebSocket library" , "description": "PHP WebSocket library"
, "keywords": ["WebSockets", "Server", "Ratchet", "Sockets", "WebSocket"] , "keywords": ["WebSockets", "Server", "Ratchet", "Sockets", "WebSocket"]
@ -27,12 +27,12 @@
} }
, "require": { , "require": {
"php": ">=5.4.2" "php": ">=5.4.2"
, "ratchet/rfc6455": "^0.3.1" , "ratchet/rfc6455": "^0.3"
, "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5" , "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5"
, "react/event-loop": ">=0.4" , "react/event-loop": ">=0.4"
, "guzzlehttp/psr7": "^1.7|^2.0" , "guzzlehttp/psr7": "^1.7|^2.0"
, "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0" , "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0"
, "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.0" , "symfony/routing": "^2.6|^3.0|^4.0|^5.0"
} }
, "require-dev": { , "require-dev": {
"phpunit/phpunit": "~4.8" "phpunit/phpunit": "~4.8"

View File

@ -5,7 +5,7 @@ namespace Ratchet;
* The version of Ratchet being used * The version of Ratchet being used
* @var string * @var string
*/ */
const VERSION = 'Ratchet/0.4.4'; const VERSION = 'Ratchet/0.4.3';
/** /**
* A proxy object representing a connection to the application * A proxy object representing a connection to the application