Skip to content

Commit

Permalink
[closes #9] Fixing error in installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanRL committed Jul 16, 2021
1 parent 8ad1d10 commit c0a9955
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

To install, simply require the package using composer:

composer require "samsara/roster:^0.1"
composer --dev require "samsara/roster:^0.1"

Or include it in your `composer.json` file:

Expand Down
3 changes: 2 additions & 1 deletion docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

Roster is available through composer. To install, you can use the following command from the command-line:

`composer require-dev "samsara/roster:^0.1"`
composer --dev require "samsara/roster:^0.1"


Or you can add the following entry to your project's composer.json file:

Expand Down
4 changes: 2 additions & 2 deletions docs/roster/latest/Roster/Roster.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ Class Roster

###### execute() Description:

execute() method
This function performs all of the application logic. All actions performed by the script are at least started from this function.

This function performs all of the application logic. All actions performed by the script are at least started from this function.
This method is an implementation of an inherited method.

---

Expand Down
7 changes: 4 additions & 3 deletions src/Samsara/Roster/Roster.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Samsara\Roster;

use Brick\Math\BigInteger;
use Noodlehaus\Config;
use Noodlehaus\Parser\Json;
use Noodlehaus\Parser\Yaml as YamlReader;
Expand Down Expand Up @@ -155,12 +156,12 @@ protected function configure(): void
}

/**
* execute() method
*
* This function performs all of the application logic. All actions performed by the script are
* at least started from this function.
*
* @param InputInterface $input
* This method is an implementation of an inherited method.
*
* @param InputInterface $input The input is injected by symfony/console
* @param OutputInterface $output
* @return int
*/
Expand Down

0 comments on commit c0a9955

Please sign in to comment.