PHPackages                             pafelin/laravel-nonce - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. pafelin/laravel-nonce

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

pafelin/laravel-nonce
=====================

Generete nonces

416.7k↓50%1PHP

Since Oct 23Pushed 12y ago1 watchersCompare

[ Source](https://github.com/pafelin/laravel4-nonces)[ Packagist](https://packagist.org/packages/pafelin/laravel-nonce)[ RSS](/packages/pafelin-laravel-nonce/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

laravel4-nonces
===============

[](#laravel4-nonces)

This package is for creating nonces easily based on a unique string (action)

Usage
-----

[](#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:

```
