Package Data | |
---|---|
Maintainer Username: | pafelin |
Maintainer Contact: | pavel@taskprocess.com (Pavel Genov) |
Package Create Date: | 2013-06-25 |
Package Last Update: | 2013-10-23 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:21:28 |
Package Statistics | |
---|---|
Total Downloads: | 13,392 |
Monthly Downloads: | 387 |
Daily Downloads: | 22 |
Total Stars: | 4 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 0 |
This package is for creating nonces easily based on a unique string (action)
Add to /app/config/app.php
'providers' => array(
....
'Pafelin\LaravelNonce\NonceServiceProvider',
....
)
and to
'aliases' => array(
....
'Nonce' => 'Pafelin\LaravelNonce\NonceFacade',
);
When you want to generate a nonce
$nonce = Nonce::generate('some_identification_string');
By default the lifetime of the nonce is 1 minute and the size 16 characters. You can change the configurations by first publishing the package with the command:
php artisan config:publish pafelin/laravel-nonce
This command will create a new file in
app/config/packages/pafelin/laravel-nonce/config.php
The file will look like this:
<?php
return array(
'nonceLife' => 60, //1 minute
'length' => 16
);
There are only two configurations. The first increase or decrease the life of the nonce and the second increase or decrease the size (length) of it. The values there are recommended.