diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c497e4..15ffbdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,4 +4,15 @@ - commands location creation - fix append additional commands -# 1.0.0 \ No newline at end of file +# 1.0.0 + - new implementation + +# 1.0.1 + - fix app dependency + +# 1.5.0 + - separate invoking from app + - clean up commands file + - bind app to closure commands + - fix help for closure commands + - add call command method \ No newline at end of file diff --git a/README.md b/README.md index 1d9e80e..236f78f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@

License PHP version - Version + Version Coverage Build Status StyleCi diff --git a/commands.php b/commands.php index a421581..8c5a032 100644 --- a/commands.php +++ b/commands.php @@ -3,7 +3,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/conso b/conso index e603715..0994e34 100755 --- a/conso +++ b/conso @@ -5,7 +5,7 @@ * * @author * @package Conso PHP Console Creator - * @version 1.0.0 + * @version 1.5.0 * @license MIT * @category CLI * @copyright 2019 Lotfio Lakehal diff --git a/src/Conso/Command.php b/src/Conso/Command.php index 61f7330..289e1c5 100644 --- a/src/Conso/Command.php +++ b/src/Conso/Command.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/CommandInvoker.php b/src/Conso/CommandInvoker.php index 1108d85..7277162 100644 --- a/src/Conso/CommandInvoker.php +++ b/src/Conso/CommandInvoker.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/CommandLinker.php b/src/Conso/CommandLinker.php index 5ab4bf2..1240ea7 100644 --- a/src/Conso/CommandLinker.php +++ b/src/Conso/CommandLinker.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/Commands/Command.php b/src/Conso/Commands/Command.php index 8347529..fff8e08 100644 --- a/src/Conso/Commands/Command.php +++ b/src/Conso/Commands/Command.php @@ -4,7 +4,7 @@ /** * @author - * @version 1.0.0 + * @version 1.5.0 * @license MIT * @category CLI * @copyright 2019 Lotfio Lakehal diff --git a/src/Conso/Commands/stubs/command b/src/Conso/Commands/stubs/command index 1adc622..9408882 100644 --- a/src/Conso/Commands/stubs/command +++ b/src/Conso/Commands/stubs/command @@ -4,7 +4,7 @@ * * @author * @package Conso PHP Console Creator - * @version 1.0.0 + * @version 1.5.0 * @license MIT * @category CLI * @copyright 2019 Lotfio Lakehal diff --git a/src/Conso/CommandsTable.php b/src/Conso/CommandsTable.php index 5fcff6b..1b6251c 100644 --- a/src/Conso/CommandsTable.php +++ b/src/Conso/CommandsTable.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/Conso.php b/src/Conso/Conso.php index b975e6b..d897f6d 100644 --- a/src/Conso/Conso.php +++ b/src/Conso/Conso.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/ConsoTrait.php b/src/Conso/ConsoTrait.php index 4cc39f3..6a1b1a6 100644 --- a/src/Conso/ConsoTrait.php +++ b/src/Conso/ConsoTrait.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/Contracts/CommandInterface.php b/src/Conso/Contracts/CommandInterface.php index 44e8aa0..9151872 100644 --- a/src/Conso/Contracts/CommandInterface.php +++ b/src/Conso/Contracts/CommandInterface.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/Contracts/InputInterface.php b/src/Conso/Contracts/InputInterface.php index 376a341..e084663 100644 --- a/src/Conso/Contracts/InputInterface.php +++ b/src/Conso/Contracts/InputInterface.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/Contracts/OutputInterface.php b/src/Conso/Contracts/OutputInterface.php index 61a1980..2ba744f 100644 --- a/src/Conso/Contracts/OutputInterface.php +++ b/src/Conso/Contracts/OutputInterface.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/Exceptions/InputException.php b/src/Conso/Exceptions/InputException.php index e73ad84..885660c 100644 --- a/src/Conso/Exceptions/InputException.php +++ b/src/Conso/Exceptions/InputException.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/Exceptions/InvokerException.php b/src/Conso/Exceptions/InvokerException.php index e16bd77..fffd007 100644 --- a/src/Conso/Exceptions/InvokerException.php +++ b/src/Conso/Exceptions/InvokerException.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/Exceptions/OutputException.php b/src/Conso/Exceptions/OutputException.php index 1614add..df4779d 100644 --- a/src/Conso/Exceptions/OutputException.php +++ b/src/Conso/Exceptions/OutputException.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/Input.php b/src/Conso/Input.php index cfe9a3f..c65e742 100644 --- a/src/Conso/Input.php +++ b/src/Conso/Input.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/Output.php b/src/Conso/Output.php index 2afdceb..e68f0c0 100644 --- a/src/Conso/Output.php +++ b/src/Conso/Output.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/src/Conso/hlprs.php b/src/Conso/hlprs.php index 2b66b6e..f5496d1 100644 --- a/src/Conso/hlprs.php +++ b/src/Conso/hlprs.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/tests/Unit/CommandInvokerTest.php b/tests/Unit/CommandInvokerTest.php index b5f8652..0956183 100644 --- a/tests/Unit/CommandInvokerTest.php +++ b/tests/Unit/CommandInvokerTest.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/tests/Unit/CommandLinkerTest.php b/tests/Unit/CommandLinkerTest.php index 15a1db3..ef69311 100644 --- a/tests/Unit/CommandLinkerTest.php +++ b/tests/Unit/CommandLinkerTest.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/tests/Unit/CommandsTableTest.php b/tests/Unit/CommandsTableTest.php index b67e33e..4585471 100644 --- a/tests/Unit/CommandsTableTest.php +++ b/tests/Unit/CommandsTableTest.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/tests/Unit/ConsoTest.php b/tests/Unit/ConsoTest.php index 4452c06..c7f23b3 100644 --- a/tests/Unit/ConsoTest.php +++ b/tests/Unit/ConsoTest.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/tests/Unit/InputTest.php b/tests/Unit/InputTest.php index e31cb88..bff2b0a 100644 --- a/tests/Unit/InputTest.php +++ b/tests/Unit/InputTest.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/tests/Unit/Mocks/Make.php b/tests/Unit/Mocks/Make.php index 8133ac7..c3d154a 100644 --- a/tests/Unit/Mocks/Make.php +++ b/tests/Unit/Mocks/Make.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT * diff --git a/tests/Unit/OutputTest.php b/tests/Unit/OutputTest.php index ee29451..4019468 100644 --- a/tests/Unit/OutputTest.php +++ b/tests/Unit/OutputTest.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.0.0 + * @version 1.5.0 * * @license MIT *