File tree Expand file tree Collapse file tree 10 files changed +45
-45
lines changed
Expand file tree Collapse file tree 10 files changed +45
-45
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 ],
2020 },
2121 "autoload" : {
2222 "psr-4" : {
23- "Rych \\ Bencode\\ " : " src/"
23+ "Power2All \\ Bencode\\ " : " src/"
2424 }
2525 }
2626}
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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/**
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
1515use PHPUnit_Framework_TestCase as TestCase ;
16- use Rych \Bencode \Exception \RuntimeException ;
16+ use Power2All \Bencode \Exception \RuntimeException ;
1717
1818/**
1919 * Bencode decoder test
Original file line number Diff line number Diff line change 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
1515use PHPUnit_Framework_TestCase as TestCase ;
1616
You can’t perform that action at this time.
0 commit comments