Skip to content

Commit

Permalink
Merge pull request #32 from DivineOmega/feature/bump-nist-ver
Browse files Browse the repository at this point in the history
Bump NIST passwords package version
  • Loading branch information
DivineOmega authored Jul 8, 2019
2 parents f0f2a5d + 0eebb41 commit ad094c4
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .phpstorm.meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/**
* PhpStorm Meta file, to provide autocomplete information for PhpStorm
* Generated on 2019-07-05 11:28:10.
* Generated on 2019-07-05 14:46:12.
*
* @author Barry vd. Heuvel <[email protected]>
* @see https://github.com/barryvdh/laravel-ide-helper
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ before_script:
# Install Composer dependencies
- composer install --no-interaction
# Setup headless web browser for Laravel Dusk tests
- php artisan dusk:chrome-driver 74
- export DISPLAY=:99.0
- ./vendor/laravel/dusk/bin/chromedriver-linux &
# Create database, migrate & seed
Expand Down
26 changes: 25 additions & 1 deletion _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

/**
* A helper file for Laravel 5, to provide autocomplete information to your IDE
* Generated for Laravel 5.8.27 on 2019-07-05 11:28:10.
* Generated for Laravel 5.8.27 on 2019-07-05 14:46:12.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -14557,6 +14557,26 @@ public static function renderTranslation()

}

namespace Illuminate\Support {

/**
*
*
*/
class Arr {

}

/**
*
*
*/
class Str {

}

}

namespace Barryvdh\Debugbar {

/**
Expand Down Expand Up @@ -15729,6 +15749,8 @@ public static function setRefreshFlow($refreshFlow = true)

class App extends \Illuminate\Support\Facades\App {}

class Arr extends \Illuminate\Support\Arr {}

class Artisan extends \Illuminate\Support\Facades\Artisan {}

class Auth extends \Illuminate\Support\Facades\Auth {}
Expand Down Expand Up @@ -18495,6 +18517,8 @@ class Session extends \Illuminate\Support\Facades\Session {}

class Storage extends \Illuminate\Support\Facades\Storage {}

class Str extends \Illuminate\Support\Str {}

class URL extends \Illuminate\Support\Facades\URL {}

class Validator extends \Illuminate\Support\Facades\Validator {}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"aws/aws-sdk-php": "^3.67",
"divineomega/laravel-route-restrictor": "^2.2",
"fideloper/proxy": "^4.0",
"langleyfoxall/laravel-nist-password-rules": "^2.0",
"langleyfoxall/laravel-nist-password-rules": "^4.0",
"laravel/framework": "5.8.*",
"laravel/tinker": "^1.0",
"rap2hpoutre/laravel-log-viewer": "^0.19.1",
Expand Down
28 changes: 17 additions & 11 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

return [
'can-not-contain-word' => 'The :attribute can not contain the word \':word\'.',
'can-not-be-similar-to-word' => 'The :attribute can not be similar to the word \':word\'.',
'found-in-data-breach' => 'The :attribute was found in a third party data breach, and can not be used.',
'can-not-be-dictionary-word' => 'The :attribute can not be a dictionary word.',
'can-not-be-repetitive-characters' => 'The :attribute can not have repetitive characters of 3 or more.',
'can-not-be-sequential-characters' => 'The :attribute can not have sequential characters of 3 or more.',
];

0 comments on commit ad094c4

Please sign in to comment.