Skip to content

Commit 7bdcfff

Browse files
committed
Change namespace for packagist.
1 parent 9a6dbaa commit 7bdcfff

File tree

8 files changed

+15
-10
lines changed

8 files changed

+15
-10
lines changed

classes/options.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @link https://github.com/Alexia/php7mar
99
*/
1010

11-
namespace alexia\mar;
11+
namespace ChrisHalbert\mar;
1212

1313
class options {
1414
/**

classes/reporter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @link https://github.com/Alexia/php7mar
99
*/
1010

11-
namespace alexia\mar;
11+
namespace ChrisHalbert\mar;
1212

1313
class reporter {
1414
/**

classes/scanner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @link https://github.com/Alexia/php7mar
99
*/
1010

11-
namespace alexia\mar;
11+
namespace ChrisHalbert\mar;
1212

1313
class scanner {
1414
/**

classes/tests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @link https://github.com/Alexia/php7mar
1010
*/
1111

12-
namespace alexia\mar;
12+
namespace ChrisHalbert\mar;
1313

1414
class tests {
1515
/**

classes/tests/critical.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @link https://github.com/Alexia/php7mar
99
*/
1010

11-
namespace alexia\mar\tests;
11+
namespace ChrisHalbert\mar\tests;
1212

1313
class critical {
1414
/**

classes/tests/nuance.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @link https://github.com/Alexia/php7mar
99
*/
1010

11-
namespace alexia\mar\tests;
11+
namespace ChrisHalbert\mar\tests;
1212

1313
class nuance {
1414
/**

composer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "alexia/php7mar",
2+
"name": "chrishalbert/php7mar",
33
"type": "project",
44
"description": "PHP 7 MAR, or just \"php7mar\", is a command line utility to generate reports on existing PHP 5 code to assist developers in porting their code quickly to PHP 7.",
55
"keywords": ["php7", "php5", "migration", "porting"],
@@ -10,7 +10,12 @@
1010
"name": "Alexia E. Smith",
1111
"email": "washuu@gmail.com",
1212
"role": "Developer"
13-
}
13+
},
14+
{
15+
"name": "Chris Halbert",
16+
"email": "christopher.halbert@gmail.com",
17+
"role": "Developer"
18+
}
1419
],
1520
"require": {
1621
"php": ">=5.4.0"

mar.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @link https://github.com/Alexia/php7mar
99
*/
1010

11-
namespace alexia\mar;
11+
namespace ChrisHalbert\mar;
1212

1313
class main {
1414
/**
@@ -171,7 +171,7 @@ private function run() {
171171
* @return void
172172
*/
173173
static public function autoloader($className) {
174-
$className = str_replace('alexia\\mar\\', '', $className);
174+
$className = str_replace('ChrisHalbert\\mar\\', '', $className);
175175
$file = PHP7MAR_DIR.DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.str_replace('\\', DIRECTORY_SEPARATOR, $className).'.php';
176176
if (is_file($file)) {
177177
require_once($file);

0 commit comments

Comments
 (0)