Compare commits
	
		
			10 Commits
		
	
	
		
			3e97459d3f
			...
			d77c7bcd07
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | d77c7bcd07 | ||
|   | 5012dc9545 | ||
|   | 3b6125c59c | ||
|   | 274054cb53 | ||
|   | 6771d2391d | ||
|   | 73937da52a | ||
|   | 7f1cc6d9d2 | ||
|   | 3d18955fe7 | ||
|   | 928854ac4c | ||
|   | 5b0194167e | 
| @ -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 | ||||||
|  | |||||||
							
								
								
									
										2
									
								
								LICENSE
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								LICENSE
									
									
									
									
									
								
							| @ -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 | ||||||
|  | |||||||
| @ -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. | ||||||
|  | |||||||
| @ -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" | ||||||
|  | |||||||
| @ -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 | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user