Skip to content

Commit

Permalink
Add file header
Browse files Browse the repository at this point in the history
  • Loading branch information
mleko committed Aug 20, 2017
1 parent 978a485 commit 8162b12
Show file tree
Hide file tree
Showing 18 changed files with 121 additions and 16 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ Install `mleko/wingman` as global package
$ composer require --global mleko/wingman
```

Format specific composer.json
Format specific `composer.json` file

```
$ wingman format /project-dir/composer.json
Formatting file: /project-dir/composer.json
```

Format composer.json found in current directory
Format `composer.json` in current directory

```
$ cd /project-dir
Expand Down
8 changes: 7 additions & 1 deletion src/Comparator.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman;

Expand Down
8 changes: 7 additions & 1 deletion src/Composer/ComposerOutputAdapter.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman\Composer;

Expand Down
8 changes: 7 additions & 1 deletion src/Composer/EventHandler.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman\Composer;

Expand Down
8 changes: 7 additions & 1 deletion src/Console/Application.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman\Console;

Expand Down
8 changes: 7 additions & 1 deletion src/Console/ConsoleOutputAdapter.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman\Console;

Expand Down
8 changes: 7 additions & 1 deletion src/Console/FormatCommand.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman\Console;

Expand Down
8 changes: 7 additions & 1 deletion src/Formatter.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman;

Expand Down
8 changes: 7 additions & 1 deletion src/IO/Output.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman\IO;

Expand Down
8 changes: 7 additions & 1 deletion src/Rule.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman;

Expand Down
8 changes: 7 additions & 1 deletion src/Rules.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman;

Expand Down
8 changes: 7 additions & 1 deletion src/Wingman.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman;

Expand Down
7 changes: 7 additions & 0 deletions tests/ComparatorTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
<?php
/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman;

Expand Down
8 changes: 7 additions & 1 deletion tests/Composer/ArrayIO.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman\Composer;

Expand Down
7 changes: 7 additions & 0 deletions tests/Composer/EventHandlerTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
<?php
/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman\Composer;

Expand Down
8 changes: 7 additions & 1 deletion tests/Console/ApplicationTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman\Console;

Expand Down
8 changes: 7 additions & 1 deletion tests/IO/ArrayOutput.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<?php

/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman\IO;

Expand Down
7 changes: 7 additions & 0 deletions tests/WingmanTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
<?php
/**
* Wingman
*
* @link http://github.com/mleko/wingman
* @copyright Copyright (c) 2017 Daniel Król
* @license MIT
*/

namespace Mleko\Wingman;

Expand Down

0 comments on commit 8162b12

Please sign in to comment.