vjroby / laravel-nonce
This is a package for integrating nonces in Laravel in requests
Installs: 42 757
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 1
Open Issues: 0
Requires
- php: >=5.4.0
- illuminate/database: 4.2.*
- illuminate/support: 4.2.*
Requires (Dev)
- aws/aws-sdk-php-laravel: 1.*
- laravel/laravel: 4.2.*
- mockery/mockery: 0.9.*
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2024-11-06 13:48:03 UTC
README
#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.