Skip to content
This repository was archived by the owner on Jul 23, 2023. It is now read-only.

Commit 0abd4de

Browse files
committed
Update namespace and url for organisation
1 parent 3954226 commit 0abd4de

19 files changed

Lines changed: 42 additions & 41 deletions

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
##Templado CLI
1+
## Templado CLI
22

3-
CLI Wrapper for [Templado](https://github.com/theseer/templado).
3+
CLI Wrapper for [Templado](https://github.com/templado/engine).
44

5+
Templado CLI

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name" : "theseer/templado-cli",
2+
"name" : "templado/cli",
33
"description" : "CLI tools for Templado",
44
"license" : "BSD-3-Clause",
55
"authors" : [
@@ -10,12 +10,12 @@
1010
}
1111
],
1212
"support" : {
13-
"issues" : "https://github.com/theseer/templado-cli/issues"
13+
"issues" : "https://github.com/templado/cli/issues"
1414
},
1515
"require" : {
1616
"php" : "^7.0",
1717
"ext-dom" : "*",
18-
"theseer/templado": "^1.0"
18+
"templado/engine": "^1.0"
1919
},
2020
"autoload": {
2121
"classmap": [

src/Directory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php declare(strict_types = 1);
2-
namespace TheSeer\Templado\Cli;
2+
namespace Templado\Cli;
33

44
use RecursiveDirectoryIterator;
55
use RecursiveIteratorIterator;

src/DirectoryException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php declare(strict_types = 1);
2-
namespace TheSeer\Templado\Cli;
2+
namespace Templado\Cli;
33

44
class DirectoryException extends Exception {
55

src/Exception.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php declare(strict_types = 1);
2-
namespace TheSeer\Templado\Cli;
2+
namespace Templado\Cli;
33

44
class Exception extends \Exception {
55
}

src/Factory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php declare(strict_types = 1);
2-
namespace TheSeer\Templado\Cli;
2+
namespace Templado\Cli;
33

44
class Factory {
55
/**

src/Generator.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php declare(strict_types = 1);
2-
namespace TheSeer\Templado\Cli;
2+
namespace Templado\Cli;
33

4-
use TheSeer\Templado\AssetListCollection;
5-
use TheSeer\Templado\AssetLoader;
6-
use TheSeer\Templado\AssetLoaderException;
7-
use TheSeer\Templado\FileName;
8-
use TheSeer\Templado\Templado;
4+
use Templado\Engine\AssetListCollection;
5+
use Templado\Engine\AssetLoader;
6+
use Templado\Engine\AssetLoaderException;
7+
use Templado\Engine\FileName;
8+
use Templado\Engine\Templado;
99

1010
class Generator {
1111

src/GeneratorConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php declare(strict_types = 1);
2-
namespace TheSeer\Templado\Cli;
2+
namespace Templado\Cli;
33

44
class GeneratorConfig {
55

src/Request.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php declare(strict_types = 1);
2-
namespace TheSeer\Templado\Cli;
2+
namespace Templado\Cli;
33

44
class Request {
55

src/RequestException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php declare(strict_types = 1);
2-
namespace TheSeer\Templado\Cli;
2+
namespace Templado\Cli;
33

44
class RequestException extends Exception {
55

0 commit comments

Comments
 (0)