PSR-4, v0.3.3

This commit is contained in:
Chris Boden 2015-05-27 08:51:05 -04:00
parent 2e7d736bac
commit 6b247c0525
4 changed files with 12 additions and 5 deletions

View File

@ -8,6 +8,14 @@ CHANGELOG
--- ---
* 0.3.3 (2015-05-26)
* BF: Framing bug on large messages upon TCP fragmentation
* BF: Symfony Router query parameter defaults applied to Request
* BF: WAMP CURIE on all URIs
* OriginCheck rules applied to FlashPolicy
* Switched from PSR-0 to PSR-4
* 0.3.2 (2014-06-08) * 0.3.2 (2014-06-08)
* BF: No messages after closing handshake (fixed rare race condition causing 100% CPU) * BF: No messages after closing handshake (fixed rare race condition causing 100% CPU)

View File

@ -18,8 +18,8 @@
, "irc": "irc://irc.freenode.org/reactphp" , "irc": "irc://irc.freenode.org/reactphp"
} }
, "autoload": { , "autoload": {
"psr-0": { "psr-4": {
"Ratchet": "src" "Ratchet\\": "src/Ratchet"
} }
} }
, "require": { , "require": {

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.3.2'; const VERSION = 'Ratchet/0.3.3';
/** /**
* A proxy object representing a connection to the application * A proxy object representing a connection to the application

View File

@ -1,5 +1,4 @@
<?php <?php
$loader = require __DIR__ . '/../vendor/autoload.php'; $loader = require __DIR__ . '/../vendor/autoload.php';
$loader->add('Ratchet', __DIR__ . '/helpers'); $loader->addPsr4('Ratchet\\', __DIR__ . '/helpers/Ratchet');
$loader->register();