Download the PHP package soumen-dey/laravel-user-agent without Composer

On this page you can find all versions of the php package soumen-dey/laravel-user-agent. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-user-agent

laravel-user-agent

An advanced user agent detector for Laravel 5.5 and above.

A powerful package allowing you to detect the user's Browser, Platform and more. This package provides a very simple API and requires no configurations at all.

Installation

Via Composer

Note: This package is tested and is fully compatible with Laravel 5.5 and above, not sure about support below Laravel 5.5.

If you are on Laravel 5.4 or below, you need to manually register the ServiceProvider and the Alias. In your config/app.php file just do:

For Laravel 5.5 and above, you don't need to do anything, just install the package and you are good to go!

Usage

Setup

If you have an alias set up for the Agent class, you don't need to import anything. However, if the alias is not set, you can do:

You are now ready to use the package.

API

The Agent Facade

You can access the visitor's details such as the browser using:

Likewise you can also fetch other details:

You can also fetch server related info:

Available Methods

Methods
Agent::ip() Returns the visitor's ip address.
Agent::all() Returns all the details about the visitor.
Agent::get() Same as the all() method.
Agent::header() Get information related to the request's header.
Agent::server() Get information related to the applications's server.
Agent::device() Get information related to the visitor's device, eg. Apple, Samsung, Mobile, Tablet, etc.
Agent::browser() Get information related to the visitor's browser.
Agent::platform() Get information related to the visitor's platform, eg. Windows, Mac, etc.
Agent::userAgent() Returns the HTTP_USER_AGENT string.

You can also retrieve properties:

Individual services handles the task of fetching visitor information, for more information read the Services section.

To get individual service:

Services

The Agnet facade is a global wrapper for individual services that handles the actual task of fetching information about the visitor. You can call the Services directly if you want to be more specific.

Get details about the visitor's browser for example:

The API for every service is similar except for some minor changes, so you can do:

Available Services

Service Namespace Usage
Browser Soumen\Agent\Services\Browser Browser::get(),
Browser::getDetails()
Returns all the information related to the visitor's browser
Platform Soumen\Agent\Services\Platform Platform::get(),
Platform::getDetails()
Returns all the information related to the visitor's platform, eg. Windows, Mac, etc.
Device Soumen\Agent\Services\Device Device::get(),
Device::getDetails()
Returns all the information related to the visitor's device, eg, Mobile or Tablet, Name, etc.
UserAgent Soumen\Agent\Services\UserAgnet UserAgent::get(),
UserAgent::getDetails()
Returns the visitor's HTTP_USER_AGENT string
Header Soumen\Agent\Services\Header Header::get(),
Header::getDetails()
Returns all information related to the request's header
Server Soumen\Agent\Services\Server Server::get(),
Server::getDetails()
Returns information about the application's server.

Fetching Properties

To get individual browser property such as name do one of the following:

Using the Service:

This applies to all the available properties of the browser. Refer to the section for each service for more information.

Properties as parameter

You can use the property name as the parameter, so you can do:

Instead of:

Using individual service:

Note: The parameter should be the exact same string as the property name.

For a list of available properties, refer to the Properties section of the respective Service

Browser

Using the Facade:

Using the Service:

Available Properties:
Properties Methods
$browser->name $browser->name(),
$browser->getName()
Returns the name of the browser.
$browser->version $browser->version(),
$browser->getVersion()
Returns the browser's version number.
$browser->versionMajor $browser->versionMajor(),
$browser->getVersionMajor()
Returns the browser's semantic major version number.
$browser->versionMinor $browser->versionMinor(),
$browser->getVersionMinor()
Returns the browser's semantic minor version number.
$browser->versionPatch $browser->versionPatch(),
$browser->getVersionPatch()
Returns the browser's semantic patch version.
$browser->engine $browser->engine(),
$browser->getEngine()
Returns the browser's rendering engine.
$browser->family $browser->family(),
$browser->getFamily(),
$browser->getVendor()
Returns the browser's vendor. Eg. Chrome, Firefox, etc.

Platform

Using the Facade:

Using the Service:

Available Properties:
Properties Methods
$platform->name $platform->name(),
$platform->getName()
Returns the name of the Operating System.
$platform->family $platform->family(),
$platform->getFamily(),
$platform->getVendor()
Returns the Operating System's vendor. Eg. Windows, Mac, Linux, etc.
$platform->version $platform->version(),
$platform->getVersion()
Returns the Operating System's human friendly version eg. XP, Vista, etc.
$platform->versionMajor $platform->versionMajor(),
$platform->getVersionMajor()
Returns the Operating System's semantic major version number.
$platform->versionMinor $platform->versionMinor(),
$platform->getVersionMinor()
Returns the Operating System's semantic minor version number.
$platform->versionPatch $platform->versionPatch(),
$platform->getVersionPatch()
Returns the Operating System's semantic patch version.

Device

Using the Facade:

Using the Service:

Available Properties:
Properties Methods
$device->family $device->family(),
$device->getFamily(),
$device->getVendor()
Returns the device's vendor like Samsung, Apple, Huawei.
$device->model $device->model(),
$device->getModel()
Returns the device's brand name like iPad, iPhone, Nexus.
$device->mobileGrade $device->mobileGrade(),
$device->getMobileGrade()
Returns the device's mobile grade in scale of A,B,C for performance.
$device->isMobile $device->isMobile()
$device->getIsMobile()
Determines if the device is a mobile device, returns boolean.
$device->isTablet $device->isTablet()
$device->getIsTablet()
Determines if the device is a tablet device, returns boolean.
$device->isDesktop $device->isDesktop()
$device->getIsDesktop()
Determines if the device is a desktop computer, returns boolean.
$device->isBot $device->isBot()
$device->getIsBot()
Determines if the device is a crawler / bot, returns boolean
$device->getType() Returns the type of device eg. mobile, tablet, etc.

User Agent

Using the Facade:

Using the Service:

No specific properties for this service.

Header

Using the Facade:

Using the Service:

Available Properties

Properties Methods Parameters
$header->host,
$header->host,
$header->host(),
$header->host(),
$header->getHost()
host
$header->userAgent,
$header->user_agent,
$header->userAgent(),
$header->user_agent(),
$header->getUserAgent()
user-agent
$header->accept,
$header->accept,
$header->accept(),
$header->accept(),
$header->getAccept()
accept
$header->acceptLanguage,
$header->accept_language,
$header->acceptLanguage(),
$header->accept_language(),
$header->getAcceptLanguage()
accept-language
$header->acceptEncoding,
$header->accept_encoding,
$header->acceptEncoding(),
$header->accept_encoding(),
$header->getAcceptEncoding()
accept-encoding
$header->cookie,
$header->cookie,
$header->cookie(),
$header->cookie(),
$header->getCookie()
cookie
$header->connection,
$header->connection,
$header->connection(),
$header->connection(),
$header->getConnection()
connection
$header->upgradeInsecureRequests,
$header->upgrade_insecure_requests,
$header->upgradeInsecureRequests(),
$header->upgrade_insecure_requests(),
$header->getUpgradeInsecureRequests()
upgrade-insecure-requests
$header->cacheControl,
$header->cache_control,
$header->cacheControl(),
$header->cache_control(),
$header->getCacheControl()
cache-control

You can use the property names as the string in the parameter column:

Server

Using the Facade:

Using the Service:

Available Properties

Properties Methods
$server->DOCUMENT_ROOT,
$server->documentRoot
$server->DOCUMENT_ROOT(),
$server->documentRoot(),
$server->getDocumentRoot()
Returns the value of PHP's $_SERVER['DOCUMENT_ROOT'] superglobal.
$server->REMOTE_ADDR,
$server->remoteAddr
$server->REMOTE_ADDR(),
$server->remoteAddr(),
$server->getRemoteAddr()
Returns the value of PHP's $_SERVER['REMOTE_ADDR'] superglobal.
$server->REMOTE_PORT,
$server->remotePort
$server->REMOTE_PORT(),
$server->remotePort(),
$server->getRemotePort()
Returns the value of PHP's $_SERVER['REMOTE_PORT'] superglobal.
$server->SERVER_SOFTWARE,
$server->serverSoftware
$server->SERVER_SOFTWARE(),
$server->serverSoftware(),
$server->getServerSoftware()
Returns the value of PHP's $_SERVER['SERVER_SOFTWARE'] superglobal.
$server->SERVER_PROTOCOL,
$server->serverProtocol
$server->SERVER_PROTOCOL(),
$server->serverProtocol(),
$server->getServerProtocol()
Returns the value of PHP's $_SERVER['SERVER_PROTOCOL'] superglobal.
$server->SERVER_NAME,
$server->serverName
$server->SERVER_NAME(),
$server->serverName(),
$server->getServerName()
Returns the value of PHP's $_SERVER['SERVER_NAME'] superglobal.
$server->SERVER_PORT,
$server->serverPort
$server->SERVER_PORT(),
$server->serverPort(),
$server->getServerPort()
Returns the value of PHP's $_SERVER['SERVER_PORT'] superglobal.
$server->REQUEST_URI,
$server->requestUri
$server->REQUEST_URI(),
$server->requestUri(),
$server->getRequestUri()
Returns the value of PHP's $_SERVER['REQUEST_URI'] superglobal.
$server->REQUEST_METHOD,
$server->requestMethod
$server->REQUEST_METHOD(),
$server->requestMethod(),
$server->getRequestMethod()
Returns the value of PHP's $_SERVER['REQUEST_METHOD'] superglobal.
$server->SCRIPT_NAME,
$server->scriptName
$server->SCRIPT_NAME(),
$server->scriptName(),
$server->getScriptName()
Returns the value of PHP's $_SERVER['SCRIPT_NAME'] superglobal.
$server->SCRIPT_FILENAME,
$server->scriptFilename
$server->SCRIPT_FILENAME(),
$server->scriptFilename(),
$server->getScriptFilename()
Returns the value of PHP's $_SERVER['SCRIPT_FILENAME'] superglobal.
$server->PATH_INFO,
$server->pathInfo
$server->PATH_INFO(),
$server->pathInfo(),
$server->getPathInfo()
Returns the value of PHP's $_SERVER['PATH_INFO'] superglobal.
$server->PHP_SELF,
$server->phpSelf
$server->PHP_SELF(),
$server->phpSelf(),
$server->getPhpSelf()
Returns the value of PHP's $_SERVER['PHP_SELF'] superglobal.
$server->HTTP_HOST,
$server->httpHost
$server->HTTP_HOST(),
$server->httpHost(),
$server->getHttpHost()
Returns the value of PHP's $_SERVER['HTTP_HOST'] superglobal.
$server->HTTP_USER_AGENT,
$server->httpUserAgent
$server->HTTP_USER_AGENT(),
$server->httpUserAgent(),
$server->getHttpUserAgent()
Returns the value of PHP's $_SERVER['HTTP_USER_AGENT'] superglobal.
$server->HTTP_ACCEPT,
$server->httpAccept
$server->HTTP_ACCEPT(),
$server->httpAccept(),
$server->getHttpAccept()
Returns the value of PHP's $_SERVER['HTTP_ACCEPT'] superglobal.
$server->HTTP_ACCEPT_LANGUAGE,
$server->httpAcceptLanguage
$server->HTTP_ACCEPT_LANGUAGE(),
$server->httpAcceptLanguage(),
$server->getHttpAcceptLanguage()
Returns the value of PHP's $_SERVER['HTTP_ACCEPT_LANGUAGE'] superglobal.
$server->HTTP_ACCEPT_ENCODING,
$server->httpAcceptEncoding
$server->HTTP_ACCEPT_ENCODING(),
$server->httpAcceptEncoding(),
$server->getHttpAcceptEncoding()
Returns the value of PHP's $_SERVER['HTTP_ACCEPT_ENCODING'] superglobal.
$server->HTTP_COOKIE,
$server->httpCookie
$server->HTTP_COOKIE(),
$server->httpCookie(),
$server->getHttpCookie()
Returns the value of PHP's $_SERVER['HTTP_COOKIE'] superglobal.
$server->HTTP_CONNECTION,
$server->httpConnection
$server->HTTP_CONNECTION(),
$server->httpConnection(),
$server->getHttpConnection()
Returns the value of PHP's $_SERVER['HTTP_CONNECTION'] superglobal.
$server->HTTP_UPGRADE_INSECURE_REQUESTS,
$server->httpUpgradeInsecureRequests
$server->HTTP_UPGRADE_INSECURE_REQUESTS(),
$server->httpUpgradeInsecureRequests(),
$server->getHttpUpgradeInsecureRequests()
Returns the value of PHP's $_SERVER['HTTP_UPGRADE_INSECURE_REQUESTS'] superglobal.
$server->HTTP_CACHE_CONTROL,
$server->httpCacheControl
$server->HTTP_CACHE_CONTROL(),
$server->httpCacheControl(),
$server->getHttpCacheControl()
Returns the value of PHP's $_SERVER['HTTP_CACHE_CONTROL'] superglobal.
$server->REQUEST_TIME_FLOAT,
$server->requestTimeFloat
$server->REQUEST_TIME_FLOAT(),
$server->requestTimeFloat(),
$server->getRequestTimeFloat()
Returns the value of PHP's $_SERVER['REQUEST_TIME_FLOAT'] superglobal.
$server->REQUEST_TIME,
$server->requestTime
$server->REQUEST_TIME(),
$server->requestTime(),
$server->getRequestTime()
Returns the value of PHP's $_SERVER['REQUEST_TIME'] superglobal.

Change log

Please see the changelog for more information on what has changed recently.

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email me at [email protected].

Credits

License

This package is released under the MIT License (MIT). Please see the license file for more information.


All versions of laravel-user-agent with dependencies

PHP Build Version
Package Version
Requires illuminate/support Version ~5
hisorange/browser-detect Version ^3.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package soumen-dey/laravel-user-agent contains the following files

Loading the files please wait ....