From c487176f1b371b262a26736a7c433a11192ff498 Mon Sep 17 00:00:00 2001 From: Mladen Danic Date: Tue, 29 Apr 2014 15:45:45 +0200 Subject: [PATCH 1/3] Bumped the version of illuminate/support required only --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 776da01..c81cb38 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ }, "require": { "php": ">=5.3.0", - "illuminate/support": "4.0.x" + "illuminate/support": "4.1.x" }, "autoload": { "psr-0": { From 1faf45c4db16923c5537028257090260632b0a1d Mon Sep 17 00:00:00 2001 From: Mladen Danic Date: Tue, 29 Apr 2014 16:15:43 +0200 Subject: [PATCH 2/3] Bumped orchestra/testbench version --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index c81cb38..093cb14 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ ], "require-dev": { "phpunit/phpunit": "3.7.*", - "orchestra/testbench": "2.0.*" + "orchestra/testbench": "2.1.*" }, "require": { "php": ">=5.3.0", From 45fb018d4db00c93824f1aa72c75da69a0aed3a3 Mon Sep 17 00:00:00 2001 From: Mladen Danic Date: Tue, 29 Apr 2014 16:26:21 +0200 Subject: [PATCH 3/3] Small text corrections --- src/VivifyIdeas/Acl/Commands/InstallCommand.php | 2 +- src/VivifyIdeas/Acl/Commands/ResetCommand.php | 4 ++-- src/VivifyIdeas/Acl/Commands/UpdateCommand.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/VivifyIdeas/Acl/Commands/InstallCommand.php b/src/VivifyIdeas/Acl/Commands/InstallCommand.php index c1341d3..f8060ad 100644 --- a/src/VivifyIdeas/Acl/Commands/InstallCommand.php +++ b/src/VivifyIdeas/Acl/Commands/InstallCommand.php @@ -146,7 +146,7 @@ public function fire() }); } - $this->info('ACL installed successful!'); + $this->info('ACL was installed successfully!'); } private function createConfig() diff --git a/src/VivifyIdeas/Acl/Commands/ResetCommand.php b/src/VivifyIdeas/Acl/Commands/ResetCommand.php index c94c82b..2a0db66 100644 --- a/src/VivifyIdeas/Acl/Commands/ResetCommand.php +++ b/src/VivifyIdeas/Acl/Commands/ResetCommand.php @@ -22,7 +22,7 @@ class ResetCommand extends Command * * @var string */ - protected $description = 'Reset all ACL permissions. This will delete both user and system permissions and install permissions from config file'; + protected $description = 'Reset all ACL permissions. This will delete both user and system permissions and install permissions from the config file'; /** * Execute the console command. @@ -37,7 +37,7 @@ public function fire() \Acl::reloadRoles(); - $this->info('ACL permissions successful reseted!'); + $this->info('ACL permissions successfully reseted!'); } } diff --git a/src/VivifyIdeas/Acl/Commands/UpdateCommand.php b/src/VivifyIdeas/Acl/Commands/UpdateCommand.php index bd36544..30781a3 100644 --- a/src/VivifyIdeas/Acl/Commands/UpdateCommand.php +++ b/src/VivifyIdeas/Acl/Commands/UpdateCommand.php @@ -37,7 +37,7 @@ public function fire() \Acl::reloadRoles(); - $this->info('ACL permissions successful updated!'); + $this->info('ACL permissions successfully updated!'); } }