This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Rule: strongPassword. Client requirements for a strong password | |
* | |
* @param string $field password | |
* @return boolean | |
*/ | |
public function strongPassword($field) { | |
// Set RegEx values | |
$rule_uppercase = '/[A-Z]/'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"results": [ | |
{ | |
"name": "illuminate/database", | |
"description": "An elegant database abstraction library.", | |
"url": "https://packagist.org/packages/illuminate/database", | |
"downloads": 10787, | |
"favers": 1 | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"results": [ | |
{ | |
"name": "laravel/framework", | |
"description": "The Laravel Framework.", | |
"url": "https://packagist.org/packages/laravel/framework", | |
"downloads": 6493, | |
"favers": 4 | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"results": [ | |
{ | |
"name": "laravel/framework", | |
"description": "The Laravel Framework.", | |
"url": "https://packagist.org/packages/laravel/framework", | |
"downloads": 6493, | |
"favers": 4 | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"packageNames": [ | |
"illuminate/auth", | |
"illuminate/cache", | |
"illuminate/config", | |
"illuminate/console", | |
"illuminate/container", | |
"illuminate/cookie", | |
"illuminate/database", | |
"illuminate/encryption", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function parseCss($css = array()) { | |
// Init | |
$return = array(); | |
// Set the break points here | |
$return['default'] = ''; | |
$return['tablet'] = '@media only screen and (max-width : 1024px) {'; | |
$return['phone'] = '@media only screen and (min-width : 320px) and (max-width : 480px) {'; |
NewerOlder