Skip to content

Commit 514edd4

Browse files
committed
Rename vendor & namespace to reflect name of org that owns repo.
See: xmlsquad/xml-authoring-project#7
1 parent cf13a70 commit 514edd4

File tree

4 files changed

+25
-25
lines changed

4 files changed

+25
-25
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# xml-authoring-tools
22

3-
A composer library of tools to help build and manage an [xml-authoring-project](https://github.com/forikal-uk/xml-authoring-project).
3+
A composer library of tools to help build and manage an [xml-authoring-project](https://github.com/xmlsquad/xml-authoring-project).
44

55
In most cases you will run the tools in the context of an xml authoring project.
66

@@ -23,7 +23,7 @@ In most cases you will run the tools in the context of an xml authoring project.
2323
* Require tools library:
2424

2525
```bash
26-
composer require forikal-uk/xml-authoring-tools
26+
composer require xmlsquad/xml-authoring-tools
2727
```
2828

2929
* List available commands:
@@ -36,7 +36,7 @@ In most cases you will run the tools in the context of an xml authoring project.
3636

3737
```bash
3838
cd ~/
39-
git clone https://github.com/forikal-uk/xml-authoring-tools.git
39+
git clone https://github.com/xmlsquad/xml-authoring-tools.git
4040
cd xml-authoring-tools
4141
4242
# Install

bin/console

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ while (!file_exists($vendor.'/vendor')) {
88
}
99
require $vendor.'/vendor/autoload.php';
1010

11-
$application = new \Forikal\Tools\Application();
11+
$application = new \XmlSquad\Tools\Application();
1212
$application->run();

composer.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "forikal-uk/xml-authoring-tools",
2+
"name": "xmlsquad/xml-authoring-tools",
33
"description": "PHP Console commands for managing xml files.",
44
"type": "library",
55
"license": "Apache-2.0",
@@ -8,30 +8,30 @@
88
],
99
"autoload": {
1010
"psr-4": {
11-
"Forikal\\Tools\\": "src/"
11+
"XmlSquad\\Tools\\": "src/"
1212
}
1313
},
1414
"autoload-dev": {
1515
"psr-4": {
16-
"Forikal\\Tools\\Tests\\": "tests/"
16+
"XmlSquad\\Tools\\Tests\\": "tests/"
1717
}
1818
},
1919
"require": {
20-
"forikal-uk/xmlauthor-example-command": "dev-master",
21-
"forikal-uk/ping-drive": "dev-master",
22-
"forikal-uk/gsheet-to-xml": "dev-master",
23-
"forikal-uk/capture-lookups": "dev-master",
20+
"xmlsquad/xmlauthor-example-command": "dev-master",
21+
"xmlsquad/ping-drive": "dev-master",
22+
"xmlsquad/gsheet-to-xml": "dev-master",
23+
"xmlsquad/capture-lookups": "dev-master",
2424
"php": ">=7.1",
2525
"symfony/console": "^3.4"
2626
},
2727
"require-dev": {
2828
"phpunit/phpunit": "^7.1"
2929
},
3030
"suggest": {
31-
"forikal-uk/xmlauthor-example-command": "To see example how to use AbstractCommand",
32-
"forikal-uk/ping-drive": "Reports its attempts at locating and reading the contents of a Google Drive folder or file",
33-
"forikal-uk/gsheet-to-xml": "Outputs the contents in the form of Xml from Google Sheet or Google Drive folder of sheets",
34-
"forikal-uk/capture-lookups": "Grabs Google Sheets and stores their data as CSV files"
31+
"xmlsquad/xmlauthor-example-command": "To see example how to use AbstractCommand",
32+
"xmlsquad/ping-drive": "Reports its attempts at locating and reading the contents of a Google Drive folder or file",
33+
"xmlsquad/gsheet-to-xml": "Outputs the contents in the form of Xml from Google Sheet or Google Drive folder of sheets",
34+
"xmlsquad/capture-lookups": "Grabs Google Sheets and stores their data as CSV files"
3535
},
3636
"extra": {
3737
"branch-alias": null

src/Application.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
<?php
22

3-
namespace Forikal\Tools;
3+
namespace XmlSquad\Tools;
44

55
use Symfony\Component\Console\Application as BaseApplication;
66

77
class Application extends BaseApplication
88
{
9-
const NAME = 'Forikal Tools';
9+
const NAME = 'XmlSquad Tools';
1010
const VERSION = '0.2.1';
1111

1212
public function __construct($name = self::NAME, $version = self::VERSION)
1313
{
1414
parent::__construct($name, $version);
1515

16-
if (class_exists('Forikal\Example\Command\HelloWorldCommand')) {
16+
if (class_exists('XmlSquad\Example\Command\HelloWorldCommand')) {
1717
$this->add(
18-
new \Forikal\Example\Command\HelloWorldCommand()
18+
new \XmlSquad\Example\Command\HelloWorldCommand()
1919
);
2020
}
2121

22-
if (class_exists('Forikal\PingDrive\Command\PingDriveCommand')) {
22+
if (class_exists('XmlSquad\PingDrive\Command\PingDriveCommand')) {
2323
$this->add(
24-
new \Forikal\PingDrive\Command\PingDriveCommand()
24+
new \XmlSquad\PingDrive\Command\PingDriveCommand()
2525
);
2626
}
2727

28-
if (class_exists('Forikal\GsheetXml\Command\GsheetToXmlCommand')) {
28+
if (class_exists('XmlSquad\GsheetXml\Command\GsheetToXmlCommand')) {
2929
$this->add(
30-
new \Forikal\GsheetXml\Command\GsheetToXmlCommand()
30+
new \XmlSquad\GsheetXml\Command\GsheetToXmlCommand()
3131
);
3232
}
3333

34-
if (class_exists('Forikal\CaptureLookups\Command\CaptureLookupsCommand')) {
34+
if (class_exists('XmlSquad\CaptureLookups\Command\CaptureLookupsCommand')) {
3535
$this->add(
36-
new \Forikal\CaptureLookups\Command\CaptureLookupsCommand()
36+
new \XmlSquad\CaptureLookups\Command\CaptureLookupsCommand()
3737
);
3838
}
3939
}

0 commit comments

Comments
 (0)