Skip to content
This repository has been archived by the owner on Nov 2, 2020. It is now read-only.

Commit

Permalink
fix(Composer): Fix wrong composer.json format
Browse files Browse the repository at this point in the history
  • Loading branch information
Rhilip committed Apr 20, 2020
1 parent 3c23927 commit 2c4459c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@
- **cs-fixer:** Update Composer config and php-cs-fixer whole project (e734812)
- **gitignore:** Add .php_cs.cache to .gitignore (15a2a15)

### Test
- **Validator:** Remove Autoload from requests (3b3e585)


<a name="v0.1.6-alpha"></a>
## [v0.1.6-alpha] - 2019-09-20
Expand Down
3 changes: 0 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,3 @@
},
"prefer-stable": true
}
,
"prefer-stable": true
}
2 changes: 1 addition & 1 deletion framework/Helpers/StringHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static function getRandomString($length, $chars = 'ABCDEFGHIJKLMNOPQRSTUV
$last = 61;
$str = '';
for ($i = 0; $i < $length; $i++) {
$str .= $chars{mt_rand(0, $last)};
$str .= $chars[mt_rand(0, $last)];
}
return $str;
}
Expand Down

0 comments on commit 2c4459c

Please sign in to comment.