Skip to content

Commit

Permalink
PSR-4, v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cboden committed May 27, 2015
1 parent 2e7d736 commit 6b247c0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

* BF: No messages after closing handshake (fixed rare race condition causing 100% CPU)
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
, "irc": "irc://irc.freenode.org/reactphp"
}
, "autoload": {
"psr-0": {
"Ratchet": "src"
"psr-4": {
"Ratchet\\": "src/Ratchet"
}
}
, "require": {
Expand Down
2 changes: 1 addition & 1 deletion src/Ratchet/ConnectionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* The version of Ratchet being used
* @var string
*/
const VERSION = 'Ratchet/0.3.2';
const VERSION = 'Ratchet/0.3.3';

/**
* A proxy object representing a connection to the application
Expand Down
3 changes: 1 addition & 2 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

$loader = require __DIR__ . '/../vendor/autoload.php';
$loader->add('Ratchet', __DIR__ . '/helpers');
$loader->register();
$loader->addPsr4('Ratchet\\', __DIR__ . '/helpers/Ratchet');

0 comments on commit 6b247c0

Please sign in to comment.