File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed
Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,14 @@ CHANGELOG
88
99---
1010
11+ * 0.3.3 (2015-05-26)
12+
13+ * BF: Framing bug on large messages upon TCP fragmentation
14+ * BF: Symfony Router query parameter defaults applied to Request
15+ * BF: WAMP CURIE on all URIs
16+ * OriginCheck rules applied to FlashPolicy
17+ * Switched from PSR-0 to PSR-4
18+
1119* 0.3.2 (2014-06-08)
1220
1321 * BF: No messages after closing handshake (fixed rare race condition causing 100% CPU)
Original file line number Diff line number Diff line change 1818 , "irc" : " irc://irc.freenode.org/reactphp"
1919 }
2020 , "autoload" : {
21- "psr-0 " : {
22- "Ratchet" : " src"
21+ "psr-4 " : {
22+ "Ratchet\\ " : " src/Ratchet "
2323 }
2424 }
2525 , "require" : {
Original file line number Diff line number Diff line change 55 * The version of Ratchet being used
66 * @var string
77 */
8- const VERSION = 'Ratchet/0.3.2 ' ;
8+ const VERSION = 'Ratchet/0.3.3 ' ;
99
1010/**
1111 * A proxy object representing a connection to the application
Original file line number Diff line number Diff line change 11<?php
22
33 $ loader = require __DIR__ . '/../vendor/autoload.php ' ;
4- $ loader ->add ('Ratchet ' , __DIR__ . '/helpers ' );
5- $ loader ->register ();
4+ $ loader ->addPsr4 ('Ratchet \\' , __DIR__ . '/helpers/Ratchet ' );
You can’t perform that action at this time.
0 commit comments