diff --git a/composer.json b/composer.json index 7a759b3..2c4bd69 100644 --- a/composer.json +++ b/composer.json @@ -11,11 +11,11 @@ "license": "MIT", "require": { "php": ">=5.4.0", - "illuminate/support": "5.*", - "illuminate/view": "5.*", - "illuminate/config": "5.*", - "illuminate/console": "5.*", - "illuminate/events": "5.*", + "illuminate/support": "5.0.*", + "illuminate/view": "5.0.*", + "illuminate/config": "5.0.*", + "illuminate/console": "5.0.*", + "illuminate/events": "5.0.*", "smarty/smarty": "3.*@stable" }, "require-dev": { diff --git a/src/Smarty/SmartyFactory.php b/src/Smarty/SmartyFactory.php index 61c49f8..dbdad27 100644 --- a/src/Smarty/SmartyFactory.php +++ b/src/Smarty/SmartyFactory.php @@ -22,7 +22,7 @@ class SmartyFactory extends Factory /** * @var string version */ - const VERSION = '2.0.0-dev'; + const VERSION = '2.0.3'; /** @var Smarty $smarty */ protected $smarty; diff --git a/tests/SmartyFactoryTest.php b/tests/SmartyFactoryTest.php index 5868c21..7157d24 100644 --- a/tests/SmartyFactoryTest.php +++ b/tests/SmartyFactoryTest.php @@ -19,11 +19,6 @@ public function testSmarty() $this->assertInstanceOf("Smarty", $this->factory->getSmarty()); } - public function testVersion() - { - $this->assertSame('2.0.0-dev', $this->factory->getVersion()); - } - public function testConfigure() { $reflectionMethod = $this->getProtectMethod($this->factory, 'setConfigure'); @@ -80,4 +75,4 @@ public function scan() closedir($dir); return $files; } -} \ No newline at end of file +}