Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pafelin/laravel4-nonces
https://github.com/pafelin/laravel4-nonces
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pafelin/laravel4-nonces
- Owner: pafelin
- Created: 2013-06-25T08:05:17.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-10-23T15:10:24.000Z (about 11 years ago)
- Last Synced: 2024-09-28T20:04:33.075Z (about 1 month ago)
- Language: PHP
- Size: 152 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
laravel4-nonces
===============This package is for creating nonces easily based on a unique string (action)
## Usage
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:
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.## Contact
* [Pavel Genov](mailto:[email protected])