Skip to content

Commit dd0243a

Browse files
author
itismadness
committed
Update namespace. Apollo is dead, long live Orpheus.
1 parent da95cba commit dd0243a

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

composer.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
{
22
"type": "library",
3-
"name": "apollorip/bencode-torrent",
3+
"name": "orpheusnet/bencode-torrent",
44
"description": "PHP Library for decoding and encoding BitTorrent BEncoded data, built for Gazelle",
55
"license": "Unlicense",
66
"authors": [
77
{
8-
"name": "itismadness",
9-
"email": "itismadness@apollo.rip"
8+
"name": "Orpheus",
9+
"email": "noreply@orpheus.network"
1010
}
1111
],
1212
"autoload": {
1313
"psr-4": {
14-
"ApolloRIP\\BencodeTorrent\\": "src/"
14+
"OrpheusNET\\BencodeTorrent\\": "src/"
1515
}
1616
},
17-
"require": {},
17+
"require": {
18+
"php": "^7"
19+
},
1820
"require-dev": {
19-
"phpunit/phpunit": "^6",
21+
"phpunit/phpunit": "^6|^7",
2022
"squizlabs/php_codesniffer": "3.*",
21-
"php": "^7",
2223
"ext-mbstring": "^7"
2324
}
2425
}

src/Bencode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace ApolloRIP\BencodeTorrent;
3+
namespace OrpheusNET\BencodeTorrent;
44

55
class Bencode {
66
protected $data = null;

src/BencodeTorrent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace ApolloRip\BencodeTorrent;
3+
namespace OrpheusNET\BencodeTorrent;
44

55
/**
66
* BEncode service that allows us to encode PHP objects into BEncode and decode

tests/BencodeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace ApolloRip\BencodeTorrent;
3+
namespace OrpheusNET\BencodeTorrent;
44

55
class BencodeTest extends \PHPUnit\Framework\TestCase {
66
public function dataProvider() {

tests/BencodeTorrentTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace ApolloRip\BencodeTorrent;
3+
namespace OrpheusNET\BencodeTorrent;
44

55
class BencodeTorrentTest extends \PHPUnit\Framework\TestCase {
66
public function testLoadTorrent() {

0 commit comments

Comments
 (0)