Skip to content

Commit ae58192

Browse files
authored
Merge pull request #1 from Power2All/fix-check
Fix check
2 parents 6a8c8a8 + 90cf690 commit ae58192

File tree

10 files changed

+45
-45
lines changed

10 files changed

+45
-45
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ $ composer require rych/bencode
2727
```php
2828
<?php
2929

30-
use Rych\Bencode\Bencode;
30+
use Power2All\Bencode\Bencode;
3131

3232
$data = array(
3333
"string" => "bar",
@@ -49,7 +49,7 @@ The above produces the string `d5:arrayl3:one3:two5:threee7:integeri42e6:string3
4949
```php
5050
<?php
5151

52-
use Rych\Bencode\Bencode;
52+
use Power2All\Bencode\Bencode;
5353

5454
$string = "d5:arrayl3:one3:two5:threee7:integeri42e6:string3:bare";
5555

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "rych/bencode",
2+
"name": "power2all/bencode",
33
"type": "library",
44
"description": "Bencode serializer for PHP 5.3+",
55
"keywords": ["bencode", "serialize"],
66
"homepage": "https://github.com/rchouinard/bencode",
77
"license": "MIT",
88
"authors": [
99
{
10-
"name": "Ryan Chouinard",
11-
"email": "rchouinard@gmail.com",
10+
"name": "Power2All",
11+
"email": "info@power2all.com",
1212
"homepage": "http://ryanchouinard.com"
1313
}
1414
],
@@ -20,7 +20,7 @@
2020
},
2121
"autoload": {
2222
"psr-4": {
23-
"Rych\\Bencode\\": "src/"
23+
"Power2All\\Bencode\\": "src/"
2424
}
2525
}
2626
}

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
processIsolation="false"
1111
stopOnFailure="false">
1212
<testsuites>
13-
<testsuite name="Rych Bencode Test Suite">
13+
<testsuite name="Power2All Bencode Test Suite">
1414
<directory suffix="Test.php">tests/</directory>
1515
</testsuite>
1616
</testsuites>

src/Bencode.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<?php
22
/**
3-
* Rych Bencode
3+
* Power2All Bencode
44
*
55
* Bencode serializer for PHP 5.3+.
66
*
7-
* @package Rych\Bencode
8-
* @copyright Copyright (c) 2014, Ryan Chouinard
9-
* @author Ryan Chouinard <rchouinard@gmail.com>
7+
* @package Power2All\Bencode
8+
* @copyright Copyright (c) 2014, Ryan Chouinard, modded by Power2All
9+
* @author Ryan Chouinard <rchouinard@gmail.com>, Power2All <info@power2all.com>
1010
* @license MIT License - http://www.opensource.org/licenses/mit-license.php
1111
*/
1212

13-
namespace Rych\Bencode;
13+
namespace Power2All\Bencode;
1414

1515
/**
1616
* Bencode class

src/Decoder.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<?php
22
/**
3-
* Rych Bencode
3+
* Power2All Bencode
44
*
55
* Bencode serializer for PHP 5.3+.
66
*
7-
* @package Rych\Bencode
8-
* @copyright Copyright (c) 2014, Ryan Chouinard
9-
* @author Ryan Chouinard <rchouinard@gmail.com>
7+
* @package Power2All\Bencode
8+
* @copyright Copyright (c) 2014, Ryan Chouinard, modded by Power2All
9+
* @author Ryan Chouinard <rchouinard@gmail.com>, Power2All <info@power2all.com>
1010
* @license MIT License - http://www.opensource.org/licenses/mit-license.php
1111
*/
1212

13-
namespace Rych\Bencode;
13+
namespace Power2All\Bencode;
1414

15-
use Rych\Bencode\Exception\RuntimeException;
15+
use Power2All\Bencode\Exception\RuntimeException;
1616

1717
/**
1818
* Bencode decoder class

src/Encoder.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<?php
22
/**
3-
* Rych Bencode
3+
* Power2All Bencode
44
*
55
* Bencode serializer for PHP 5.3+.
66
*
7-
* @package Rych\Bencode
8-
* @copyright Copyright (c) 2014, Ryan Chouinard
9-
* @author Ryan Chouinard <rchouinard@gmail.com>
7+
* @package Power2All\Bencode
8+
* @copyright Copyright (c) 2014, Ryan Chouinard, modded by Power2All
9+
* @author Ryan Chouinard <rchouinard@gmail.com>, Power2All <info@power2all.com>
1010
* @license MIT License - http://www.opensource.org/licenses/mit-license.php
1111
*/
1212

13-
namespace Rych\Bencode;
13+
namespace Power2All\Bencode;
1414

15-
use Rych\Bencode\Exception\RuntimeException;
15+
use Power2All\Bencode\Exception\RuntimeException;
1616

1717

1818
/**

src/Exception.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<?php
22
/**
3-
* Rych Bencode
3+
* Power2All Bencode
44
*
55
* Bencode serializer for PHP 5.3+.
66
*
7-
* @package Rych\Bencode
8-
* @copyright Copyright (c) 2014, Ryan Chouinard
9-
* @author Ryan Chouinard <rchouinard@gmail.com>
7+
* @package Power2All\Bencode
8+
* @copyright Copyright (c) 2014, Ryan Chouinard, modded by Power2All
9+
* @author Ryan Chouinard <rchouinard@gmail.com>, Power2All <info@power2all.com>
1010
* @license MIT License - http://www.opensource.org/licenses/mit-license.php
1111
*/
1212

13-
namespace Rych\Bencode;
13+
namespace Power2All\Bencode;
1414

1515
/**
1616
* Exception marker interface

src/Exception/RuntimeException.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
*
55
* Bencode serializer for PHP 5.3+.
66
*
7-
* @package Rych\Bencode
8-
* @copyright Copyright (c) 2014, Ryan Chouinard
9-
* @author Ryan Chouinard <rchouinard@gmail.com>
7+
* @package Power2All\Bencode
8+
* @copyright Copyright (c) 2014, Ryan Chouinard, modded by Power2All
9+
* @author Ryan Chouinard <rchouinard@gmail.com>, Power2All <info@power2all.com>
1010
* @license MIT License - http://www.opensource.org/licenses/mit-license.php
1111
*/
1212

13-
namespace Rych\Bencode\Exception;
13+
namespace Power2All\Bencode\Exception;
1414

15-
use Rych\Bencode\Exception;
15+
use Power2All\Bencode\Exception;
1616

1717
/**
1818
* Runtime exception

tests/DecoderTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<?php
22
/**
3-
* Rych Bencode
3+
* Power2All Bencode
44
*
55
* Bencode serializer for PHP 5.3+.
66
*
7-
* @package Rych\Bencode
8-
* @copyright Copyright (c) 2014, Ryan Chouinard
9-
* @author Ryan Chouinard <rchouinard@gmail.com>
7+
* @package Power2All\Bencode
8+
* @copyright Copyright (c) 2014, Ryan Chouinard, modded by Power2All
9+
* @author Ryan Chouinard <rchouinard@gmail.com>, Power2All <info@power2all.com>
1010
* @license MIT License - http://www.opensource.org/licenses/mit-license.php
1111
*/
1212

13-
namespace Rych\Bencode;
13+
namespace Power2All\Bencode;
1414

1515
use PHPUnit_Framework_TestCase as TestCase;
16-
use Rych\Bencode\Exception\RuntimeException;
16+
use Power2All\Bencode\Exception\RuntimeException;
1717

1818
/**
1919
* Bencode decoder test

tests/EncoderTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<?php
22
/**
3-
* Rych Bencode
3+
* Power2All Bencode
44
*
55
* Bencode serializer for PHP 5.3+.
66
*
7-
* @package Rych\Bencode
8-
* @copyright Copyright (c) 2014, Ryan Chouinard
9-
* @author Ryan Chouinard <rchouinard@gmail.com>
7+
* @package Power2All\Bencode
8+
* @copyright Copyright (c) 2014, Ryan Chouinard, modded by Power2All
9+
* @author Ryan Chouinard <rchouinard@gmail.com>, Power2All <info@power2all.com>
1010
* @license MIT License - http://www.opensource.org/licenses/mit-license.php
1111
*/
1212

13-
namespace Rych\Bencode;
13+
namespace Power2All\Bencode;
1414

1515
use PHPUnit_Framework_TestCase as TestCase;
1616

0 commit comments

Comments
 (0)