mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions. You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root. For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
// Model which will be having points, generally it will be User
|
|
'payee_model' => '\App\User',
|
|
|
|
// Reputation model
|
|
'reputation_model' => '\QCod\Gamify\Reputation',
|
|
|
|
// Allow duplicate reputation points
|
|
'allow_reputation_duplicate' => true,
|
|
|
|
// Broadcast on private channel
|
|
'broadcast_on_private_channel' => false,
|
|
|
|
// Channel name prefix, user id will be suffixed
|
|
'channel_name' => 'user.reputation.',
|
|
|
|
// Badge model
|
|
'badge_model' => '\QCod\Gamify\Badge',
|
|
|
|
// Where all badges icon stored
|
|
'badge_icon_folder' => 'images/badges/',
|
|
|
|
// Extention of badge icons
|
|
'badge_icon_extension' => '.svg',
|
|
|
|
// All the levels for badge
|
|
'badge_levels' => [
|
|
'No-Coiner 😱' => 0,
|
|
'Shitcoiner 💩' => 0,
|
|
'Trader 🎢' => 0,
|
|
'Im Rabbit hole 🐰🕳' => 0,
|
|
'DCA 🗓' => 0,
|
|
'Not your keys, not your coins 🗝' => 0,
|
|
'Wale 🐋' => 0,
|
|
'Running a Node 📡' => 0,
|
|
'Lightning-User ⚡️' => 0,
|
|
'Miner ⛏️' => 0,
|
|
'Solo-Miner 🎲' => 0,
|
|
'Orange Pilled 💊' => 1,
|
|
'Cyber Hornet 🐝' => 21000, // 210.000
|
|
'Toxic Maximalist 🧪' => 21000, // 210.000
|
|
'Satoshi Nakamoto 🧠' => 21000000, // 21.000.000
|
|
],
|
|
|
|
// Default level
|
|
'badge_default_level' => 0,
|
|
];
|