Compare commits

..

10 Commits

Author SHA1 Message Date
Christian Lück
d77c7bcd07 Reviving Ratchet!
Some checks are pending
CI / PHPUnit (highest, 5.4) (push) Waiting to run
CI / PHPUnit (highest, 5.5) (push) Waiting to run
CI / PHPUnit (highest, 5.6) (push) Waiting to run
CI / PHPUnit (highest, 7.0) (push) Waiting to run
CI / PHPUnit (highest, 7.1) (push) Waiting to run
CI / PHPUnit (highest, 7.2) (push) Waiting to run
CI / PHPUnit (highest, 7.3) (push) Waiting to run
CI / PHPUnit (highest, 7.4) (push) Waiting to run
CI / PHPUnit (lowest, 5.4) (push) Waiting to run
2024-05-13 18:57:30 +02:00
Chris Boden
5012dc9545 Format changelog 2021-12-13 19:20:41 -05:00
Chris Boden
3b6125c59c
Merge pull request #929 from ratchetphp/v0.4.4
v0.4.4
2021-12-13 19:14:50 -05:00
Chris Boden
274054cb53 Update licence 2021-12-13 19:07:50 -05:00
Chris Boden
6771d2391d Update changelog and version 2021-12-13 19:06:48 -05:00
Chris Boden
73937da52a
Merge pull request #926 from frank9999/symfony6
Add Symfony 6 support
2021-12-12 18:12:14 -05:00
Frank Schreuder
7f1cc6d9d2 Add Symfony 6 support 2021-12-12 23:58:39 +01:00
Chris Boden
3d18955fe7 Use latest RFC6455 lib 2021-12-12 11:58:22 -05:00
Chris Boden
928854ac4c Merge branch 'Minifets-master' into v0.4.4 2021-12-12 11:55:12 -05:00
minifets@DESKTOP-QP6P5N5.localdomain
5b0194167e Revert "Update composer.json"
This reverts commit 5ebe073fee0f04a7d26aaa0504b0e8b69d0d2e36.
2021-12-12 11:54:06 -05:00
5 changed files with 16 additions and 6 deletions

View File

@ -8,6 +8,11 @@ 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-2020 Chris Boden Copyright (c) 2011 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,6 +7,11 @@
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": "minifets/ratchet" "name": "cboden/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" , "ratchet/rfc6455": "^0.3.1"
, "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" , "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0"
, "symfony/routing": "^2.6|^3.0|^4.0|^5.0" , "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.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.3'; const VERSION = 'Ratchet/0.4.4';
/** /**
* A proxy object representing a connection to the application * A proxy object representing a connection to the application