Skip to content

Commit 6b247c0

Browse files
committed
PSR-4, v0.3.3
1 parent 2e7d736 commit 6b247c0

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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)

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
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": {

src/Ratchet/ConnectionInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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

tests/bootstrap.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
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');

0 commit comments

Comments
 (0)