Skip to content

Commit 1c1847b

Browse files
committed
Renaming app
1 parent a4ed822 commit 1c1847b

8 files changed

Lines changed: 45 additions & 45 deletions

File tree

File renamed without changes.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "steverobbins/magento-download-cli",
2+
"name": "steverobbins/magedownload-cli",
33
"description": "Download Magento editions and patches via command line",
44
"require": {
55
"symfony/console": "^2.7",
66
"guzzlehttp/guzzle": "~6.0",
77
"symfony/yaml": "2.6.*",
8-
"steverobbins/magento-download": "dev-master"
8+
"steverobbins/magedownload": "dev-master"
99
},
1010
"require-dev": {
1111
"squizlabs/php_codesniffer": "^2.3"
@@ -22,5 +22,5 @@
2222
"": "src"
2323
}
2424
},
25-
"bin": ["bin/magescan"]
25+
"bin": ["bin/magedownload"]
2626
}

src/MagentoDownload/Command/AbstractCommand.php renamed to src/MageDownload/Command/AbstractCommand.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<?php
22
/**
3-
* Magento Download CLI
3+
* Magedownload CLI
44
*
55
* PHP version 5
66
*
7-
* @category MagentoDownload
8-
* @package MagentoDownload
7+
* @category MageDownload
8+
* @package MageDownload
99
* @author Steve Robbins <steve@steverobbins.com>
1010
* @copyright 2015 Steve Robbins
1111
* @license http://creativecommons.org/licenses/by/4.0/ CC BY 4.0
12-
* @link https://github.com/steverobbins/magento-download-cli
12+
* @link https://github.com/steverobbins/magedownload-cli
1313
*/
1414

15-
namespace MagentoDownload\Command;
15+
namespace MageDownload\Command;
1616

1717
use Symfony\Component\Console\Command\Command;
1818
use Symfony\Component\Console\Input\InputInterface;
@@ -21,12 +21,12 @@
2121
/**
2222
* Abstract scan command
2323
*
24-
* @category MagentoDownload
25-
* @package MagentoDownload
24+
* @category MageDownload
25+
* @package MageDownload
2626
* @author Steve Robbins <steve@steverobbins.com>
2727
* @copyright 2015 Steve Robbins
2828
* @license http://creativecommons.org/licenses/by/4.0/ CC BY 4.0
29-
* @link https://github.com/steverobbins/magento-download-cli
29+
* @link https://github.com/steverobbins/magedownload-cli
3030
*/
3131
abstract class AbstractCommand extends Command
3232
{
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
<?php
22
/**
3-
* Magento Download CLI
3+
* Magedownload CLI
44
*
55
* PHP version 5
66
*
7-
* @category MagentoDownload
8-
* @package MagentoDownload
7+
* @category MageDownload
8+
* @package MageDownload
99
* @author Steve Robbins <steve@steverobbins.com>
1010
* @copyright 2015 Steve Robbins
1111
* @license http://creativecommons.org/licenses/by/4.0/ CC BY 4.0
12-
* @link https://github.com/steverobbins/magento-download-cli
12+
* @link https://github.com/steverobbins/magedownload-cli
1313
*/
1414

15-
namespace MagentoDownload\Command;
15+
namespace MageDownload\Command;
1616

1717
use Symfony\Component\Yaml\Yaml;
1818

1919
/**
2020
* Config loader
2121
*
22-
* @category MagentoDownload
23-
* @package MagentoDownload
22+
* @category MageDownload
23+
* @package MageDownload
2424
* @author Steve Robbins <steve@steverobbins.com>
2525
* @copyright 2015 Steve Robbins
2626
* @license http://creativecommons.org/licenses/by/4.0/ CC BY 4.0
27-
* @link https://github.com/steverobbins/magento-download-cli
27+
* @link https://github.com/steverobbins/magedownload-cli
2828
*/
2929
class Config
3030
{
31-
const CONFIG_FILE_NAME = 'magento-download-cli.yaml';
31+
const CONFIG_FILE_NAME = 'magedownload-cli.yaml';
3232

3333
protected $userConfig;
3434

src/MagentoDownload/Command/DownloadCommand.php renamed to src/MageDownload/Command/DownloadCommand.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
<?php
22
/**
3-
* Magento Download CLI
3+
* Magedownload CLI
44
*
55
* PHP version 5
66
*
7-
* @category MagentoDownload
8-
* @package MagentoDownload
7+
* @category MageDownload
8+
* @package MageDownload
99
* @author Steve Robbins <steve@steverobbins.com>
1010
* @copyright 2015 Steve Robbins
1111
* @license http://creativecommons.org/licenses/by/4.0/ CC BY 4.0
12-
* @link https://github.com/steverobbins/magento-download-cli
12+
* @link https://github.com/steverobbins/magedownload-cli
1313
*/
1414

15-
namespace MagentoDownload\Command;
15+
namespace MageDownload\Command;
1616

17-
use MagentoDownload\Download;
17+
use MageDownload\Download;
1818
use Symfony\Component\Console\Input\InputArgument;
1919
use Symfony\Component\Console\Input\InputInterface;
2020
use Symfony\Component\Console\Output\OutputInterface;
2121

2222
/**
2323
* Download command
2424
*
25-
* @category MagentoDownload
26-
* @package MagentoDownload
25+
* @category MageDownload
26+
* @package MageDownload
2727
* @author Steve Robbins <steve@steverobbins.com>
2828
* @copyright 2015 Steve Robbins
2929
* @license http://creativecommons.org/licenses/by/4.0/ CC BY 4.0
30-
* @link https://github.com/steverobbins/magento-download-cli
30+
* @link https://github.com/steverobbins/magedownload-cli
3131
*/
3232
class DownloadCommand extends AbstractCommand
3333
{

src/MagentoDownload/Command/InfoCommand.php renamed to src/MageDownload/Command/InfoCommand.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
<?php
22
/**
3-
* Magento Download CLI
3+
* Magedownload CLI
44
*
55
* PHP version 5
66
*
7-
* @category MagentoDownload
8-
* @package MagentoDownload
7+
* @category MageDownload
8+
* @package MageDownload
99
* @author Steve Robbins <steve@steverobbins.com>
1010
* @copyright 2015 Steve Robbins
1111
* @license http://creativecommons.org/licenses/by/4.0/ CC BY 4.0
12-
* @link https://github.com/steverobbins/magento-download-cli
12+
* @link https://github.com/steverobbins/magedownload-cli
1313
*/
1414

15-
namespace MagentoDownload\Command;
15+
namespace MageDownload\Command;
1616

17-
use MagentoDownload\Info;
17+
use MageDownload\Info;
1818
use Symfony\Component\Console\Input\InputArgument;
1919
use Symfony\Component\Console\Input\InputInterface;
2020
use Symfony\Component\Console\Output\OutputInterface;
2121

2222
/**
2323
* Info command
2424
*
25-
* @category MagentoDownload
26-
* @package MagentoDownload
25+
* @category MageDownload
26+
* @package MageDownload
2727
* @author Steve Robbins <steve@steverobbins.com>
2828
* @copyright 2015 Steve Robbins
2929
* @license http://creativecommons.org/licenses/by/4.0/ CC BY 4.0
30-
* @link https://github.com/steverobbins/magento-download-cli
30+
* @link https://github.com/steverobbins/magedownload-cli
3131
*/
3232
class InfoCommand extends AbstractCommand
3333
{

src/bootstrap.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
<?php
22
/**
3-
* Magento Download CLI
3+
* Magedownload CLI
44
*
55
* PHP version 5
66
*
7-
* @category MagentoDownload
8-
* @package MagentoDownload
7+
* @category MageDownload
8+
* @package MageDownload
99
* @author Steve Robbins <steve@steverobbins.com>
1010
* @copyright 2015 Steve Robbins
1111
* @license http://creativecommons.org/licenses/by/4.0/ CC BY 4.0
12-
* @link https://github.com/steverobbins/magento-download-cli
12+
* @link https://github.com/steverobbins/magedownload-cli
1313
*/
1414

1515
require_once __DIR__ . '/../vendor/autoload.php';
1616

17-
use MagentoDownload\Command\DownloadCommand;
18-
use MagentoDownload\Command\InfoCommand;
17+
use MageDownload\Command\DownloadCommand;
18+
use MageDownload\Command\InfoCommand;
1919
use Symfony\Component\Console\Application;
2020

21-
$app = new Application('Magento Download CLI');
21+
$app = new Application('Magedownload CLI');
2222

2323
$app->add(new DownloadCommand);
2424
$app->add(new InfoCommand);

0 commit comments

Comments
 (0)