LaravelPackages.net
Acme Inc.
Toggle sidebar
lotfixyz/laravel-smartdetect

Cool development helper for Laravel.

48
0
About lotfixyz/laravel-smartdetect

lotfixyz/laravel-smartdetect is a Laravel package for cool development helper for laravel.. It currently has 0 GitHub stars and 48 downloads on Packagist. Install it with composer require lotfixyz/laravel-smartdetect. Discover more Laravel packages by lotfixyz or browse all Laravel packages to compare alternatives.

Last updated

Laravel Smartdetect

Cool development helper for Laravel.

Tested on Laravel 5.8 and 6.2

Install

Require this package with composer using the following command:

composer require lotfixyz/laravel-smartdetect

After composer command done, add autoload to autoload/psr-4 of your the composer.json file and run composer dump-autoload certainly.

"Lotfixyz\\Smartdetect\\": "vendor/lotfixyz/laravel-smartdetect/src"

Something like this:

... "autoload": { "psr-4": { ... "Lotfixyz\\Smartdetect\\": "vendor/lotfixyz/laravel-smartdetect/src" }, ... }, ...

Finally add the service provider to the providers array in config/app.php

Lotfixyz\Smartdetect\SmartdetectServiceProvider::class,

Install --dev

To install this package on only development systems, add the --dev flag to your composer command:

composer require --dev lotfixyz/laravel-smartdetect

After composer command done, add autoload to autoload-dev/psr-4 of your the composer.json file and run composer dump-autoload certainly.

"Lotfixyz\\Smartdetect\\": "vendor/lotfixyz/laravel-smartdetect/src"

Something like this:

... "autoload-dev": { "psr-4": { ... "Lotfixyz\\Smartdetect\\": "vendor/lotfixyz/laravel-smartdetect/src" }, ... }, ...

Finally, instead of adding the service provider in the config/app.php file, you can add the following code to your app/Providers/AppServiceProvider.php file, within the register() method:

if ('production' !== $this->app->environment())
{
    $this->app->register(\Lotfixyz\Smartdetect\SmartdetectServiceProvider::class);
}

This will allow your application to load the Smartdetect on non-production enviroments.

Important Note:

Don't forget to run composer dump-autoload after any change of your composer.json file.

Publishing

You can publish the config file to take the control of your defaults and settings.

Run php artisan vendor:publish and select Lotfixyz\Smartdetect\SmartdetectServiceProvider

Environment File

You can also optionally add following lines to your .env file.

SMARTDETECT_TURNED_OFF=false
SMARTDETECT_DEBUG_MODE="${APP_DEBUG}"
SMARTDETECT_INVOLVE_CONFIG=true
SMARTDETECT_INVOLVE_DOMAIN=true
SMARTDETECT_INVOLVE_IP=true
SMARTDETECT_INVOLVE_REQUEST=true
SMARTDETECT_INVOLVE_USER=true

Usage

Simply use this sample.

$smartdetect = new SmartdetectClass();
$smartdetect->bind_ip('94.232.175.55');
$smartdetect->bind_domain('lotfi.xyz', SmartdetectClass::DOMAIN_TYPE_ENTIRE);
$smartdetect->bind_domain('.xyz', SmartdetectClass::DOMAIN_TYPE_EXTENSION);
$smartdetect->bind_domain('lotfi.', SmartdetectClass::DOMAIN_TYPE_NAME);
$smartdetect->bind_request('with_value', 110);
$smartdetect->bind_request('without_value');
$smartdetect->bind_user('demo', SmartdetectClass::USER_TYPE_EMAIL);
$smartdetect->bind_user('2', SmartdetectClass::USER_TYPE_ID);
$smartdetect->make();
dd((array)$smartdetect->result);

Note

Documents and New Features are upcoming...

License

The Laravel Smartdetect is open-sourced software licensed under the MIT license

Star History Chart