Skip to content

Commit

Permalink
Merge branch 'release/3.17.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
sayan goswami committed Apr 19, 2022
2 parents c820322 + d266dbc commit eb7a272
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 80 deletions.
1 change: 0 additions & 1 deletion .idea/orca.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions bin/orca.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace Acquia\Orca;

use Stecman\Component\Symfony\Console\BashCompletion\CompletionCommand;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Filesystem\Filesystem;
Expand Down Expand Up @@ -51,7 +50,4 @@
$application->setName('ORCA');
$application->setVersion(trim(file_get_contents(__DIR__ . '/../config/VERSION')));

// Add command autocompletion.
$application->add(new CompletionCommand());

$application->run();
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"php-parallel-lint/php-parallel-lint": "^1.2.0",
"phploc/phploc": "7.0.2",
"phpmd/phpmd": "^2.6",
"stecman/symfony-console-completion": "^0.10.1",
"symfony/config": "^4.1",
"symfony/console": "^4.1",
"symfony/dependency-injection": "^4.1",
Expand Down
53 changes: 2 additions & 51 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.16.0
v3.17.0
4 changes: 2 additions & 2 deletions config/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ drupal/lightning_layout:
version_dev: 2.x-dev

drupal/lightning_media:
version: 4.x
version_dev: 4.x-dev
version: ~
version_dev: 5.0.x-dev

drupal/lightning_workflow:
version: 3.x
Expand Down
13 changes: 1 addition & 12 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,7 @@ ORCA can also be installed and run locally for testing and development. Follow t
alias orca="/path/to/orca/bin/orca"
```

(Add this to your `.bash_profile`/`.bashrc` or equivalent to make it permanent.)

1. Optionally add command autocompletion to your shell:

```bash
# Bash:
bash $(/path/to/orca _completion --generate-hook)
# Zsh:
source <(/path/to/orca _completion --generate-hook)
```

(Add this to your `.bash_profile`/`.bashrc` or equivalent to make it permanent.)
Invoke ORCA from the terminal (`bin/orca`). Use the `--help` command option to learn more about the various commands or see how they're used in [`bin/travis/script.sh`](../bin/common/script.sh). Use the `fixture:run-server` command to run the web server for local development.
## Making ORCA aware of your package
Expand Down
4 changes: 0 additions & 4 deletions tests/Domain/Fixture/Helper/ComposerJsonHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,6 @@ public function testAddRepository(): void {
'type' => 'composer',
'url' => 'https://packages.drupal.org/8',
],
'asset-packagist' => [
'type' => 'composer',
'url' => 'https://asset-packagist.org',
],
];
/** @var \Noodlehaus\Config $config */
$config = $composer_json->getConfig();
Expand Down
4 changes: 0 additions & 4 deletions tests/Domain/Fixture/Helper/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,6 @@
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"minimum-stability": "dev",
Expand Down

0 comments on commit eb7a272

Please sign in to comment.