From 206c280540a32b22418a4cb30d3db0ad66ff622d Mon Sep 17 00:00:00 2001 From: Sander Meert Date: Fri, 15 May 2015 11:08:16 +0200 Subject: [PATCH] Added ircmaxell/password-compat to composer.json --- composer.json | 4 +-- .../test/Unit/PasswordNeedsRehashTest.php | 26 ------------------- 2 files changed, 2 insertions(+), 28 deletions(-) delete mode 100755 vendor/ircmaxell/password-compat/test/Unit/PasswordNeedsRehashTest.php diff --git a/composer.json b/composer.json index e284442..c79a487 100644 --- a/composer.json +++ b/composer.json @@ -1,4 +1,3 @@ - { "name": "laravel/laravel", "description": "The Laravel Framework.", @@ -11,7 +10,8 @@ "willdurand/negotiation": "@stable", "thujohn/pdf": "dev-master", "msurguy/honeypot": "dev-master", - "guzzlehttp/guzzle": "~4.0" + "guzzlehttp/guzzle": "~4.0", + "ircmaxell/password-compat": "1.0.4" }, "autoload": { "classmap": [ diff --git a/vendor/ircmaxell/password-compat/test/Unit/PasswordNeedsRehashTest.php b/vendor/ircmaxell/password-compat/test/Unit/PasswordNeedsRehashTest.php deleted file mode 100755 index c2932dc..0000000 --- a/vendor/ircmaxell/password-compat/test/Unit/PasswordNeedsRehashTest.php +++ /dev/null @@ -1,26 +0,0 @@ - 7), false), - array('$2y$07$usesomesillystringfore2udlvp1ii2e./u9c8sbjqp8i90dh6hi', PASSWORD_BCRYPT, array('cost' => 5), true), - ); - } - - public function testFuncExists() { - $this->assertTrue(function_exists('password_needs_rehash')); - } - - /** - * @dataProvider provideCases - */ - public function testCases($hash, $algo, $options, $valid) { - $this->assertEquals($valid, password_needs_rehash($hash, $algo, $options)); - } - -} \ No newline at end of file