Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
t3ran13 committed Dec 6, 2017
1 parent c1504b1 commit c66561c
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A simple usage example could look like this

require __DIR__ . '/vendor/.composer/autoload.php';

use TrafficCophp\ByteBuffer\ByteBuffer;
use t3ran13\ByteBuffer\ByteBuffer;

$channel = 'channel_one';
$message = 'php';
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "t3ran13/ByteBuffer",
"name": "t3ran13/bytebuffer",
"type": "library",
"description": "Node.js inspired byte stream buffer for PHP.",
"keywords": ["Buffer", "Stream", "Socket", "Library", "Bytehandling", "pack", "wrapper", "binary data"],
Expand Down
4 changes: 2 additions & 2 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
colors="true">

<testsuites>
<testsuite name="TrafficCophp Bytebuffer Test Suite">
<directory suffix="Test.php">tests/TrafficCophp/ByteBuffer</directory>
<testsuite name="t3ran13 Bytebuffer Test Suite">
<directory suffix="Test.php">tests/t3ran13/ByteBuffer</directory>
</testsuite>
</testsuites>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace TrafficCophp\ByteBuffer;
namespace t3ran13\ByteBuffer;

abstract class AbstractBuffer implements ReadableBuffer, WriteableBuffer {
abstract public function __construct($length);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace TrafficCophp\ByteBuffer;
namespace t3ran13\ByteBuffer;

/**
* ByteBuffer
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace TrafficCophp\ByteBuffer;
namespace t3ran13\ByteBuffer;

/**
* LengthMap
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace TrafficCophp\ByteBuffer;
namespace t3ran13\ByteBuffer;

interface ReadableBuffer {
public function read($start, $end);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace TrafficCophp\ByteBuffer;
namespace t3ran13\ByteBuffer;

interface WriteableBuffer {
public function write($string, $offset);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use TrafficCophp\ByteBuffer\ByteBuffer;
use t3ran13\ByteBuffer\ByteBuffer;

/**
* ByteBuffer testsuite
Expand Down

0 comments on commit c66561c

Please sign in to comment.