| Package Data | |
|---|---|
| Maintainer Username: | vjroby | 
| Maintainer Contact: | eu@robertgabriel.ro (Robert Gabriel Dinu) | 
| Package Create Date: | 2014-12-18 | 
| Package Last Update: | 2016-01-20 | 
| Home Page: | https://github.com/vjroby/laravel-nonce | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-27 03:19:34 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 42,757 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 3 | 
| Total Watchers: | 2 | 
| Total Forks: | 1 | 
| Total Open Issues: | 0 | 
#This is a Laravel package for using Nonces for HTTP Requests.
Instalation:
Using Composer, just add
"vjroby/laravel-nonce": "1.1.0"
to your compsoer.json file and run a compposer update
add to app providers:
'Vjroby\LaravelNonce\LaravelNonceServiceProvider'
and to aliases:
'Nonce'			=> 'Vjroby\LaravelNonce\Facades\NonceFacade',
so it can be used as static class in the project.
For creating the table:
php artisan vjroby-laravel-nonce:migrations
It will create 2014_12_18_133440_create_nonce_table migration.php file,
and then:
php artisan migrate
For publishing configuration file:
php artisan config:publish vjroby/laravel-nonce
For integrating with DynamoDB follow the configuration file.