Laravel Personality Insights, provides a simple and easy to use wrapper around IBM Watson Personality Insights API
Laravel Personality Insights is open-sourced software licensed under the MIT license
Personality Insights extracts and analyzes a spectrum of personality attributes to help discover actionable insights about people and entities, and in turn guides end users to highly personalized interactions. The service outputs personality characteristics that are divided into three dimensions: the Big 5, Values, and Needs. While some services are contextually specific depending on the domain model and content, Personality Insights only requires a minimum of 3500+ words of any text.
The Personality Insights service lends itself to an almost limitless number of potential applications. Businesses can use the detailed personality portraits of individual customers for finer-grained customer segmentation and better-quality lead generation. This data enables them to design marketing, provide product recommendations, and deliver customer care that is more personal and relevant. Personality Insights can also be used to help recruiters or university admissions match candidates to companies or universities.
Install the package through composer:
$ composer require findbrok/laravel-personality-insights
If you are using Laravel >= 5.5, you can skip service registration and aliases registration thanks to Laravel auto package discovery feature.
Add the Service Provider to your providers array in config/app.php
,
see Registering Providers
'providers' => [
// Other Service Providers
FindBrok\PersonalityInsights\InsightsServiceProvider::class,
],
Once installed you can now publish your config file and set your correct configuration for using the package.
$ php artisan vendor:publish --provider="FindBrok\PersonalityInsights\InsightsServiceProvider" --tag="config"
This will create a file config/personality-insights.php
, for information on how to set values present in this file see Configuration Before Usage
Big Thanks to all developers who worked hard to create something amazing!
Twitter: @PercyMamedy
GitHub: percymamedy