PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Johnny Mast   Redbox PHP Track Website Visitors   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Redbox PHP Track Website Visitors
Track the arrival of users visiting a Web site
Author: By
Last change: Release tag v1.0
Removed mockery.
Quality update.
Quality update.
Date: 3 years ago
Size: 1,052 bytes
 

Contents

Class file image Download
{ "name": "redbox/tracker", "description": "Real-time check the visitors on your Laravel installation.", "keywords": ["laravel", "analytics", "real-time", "events"], "type": "library", "license": "MIT", "authors": [ { "name": "Johnny Mast", "email": "mastjohnny@gmail.com", "homepage": "https://github.com/johnnymast", "role": "lead" } ], "require": { "php": ">=7.3", "piwik/device-detector": "^3.12" }, "require-dev": { "squizlabs/php_codesniffer": "3.*", "orchestra/testbench": "^5.2", "ext-pdo_sqlite": "*", "barryvdh/laravel-ide-helper": "^2.7" }, "autoload": { "psr-4": { "Redbox\\Tracker\\": "src/" } }, "autoload-dev": { "psr-4": { "Redbox\\Tracker\\Tests\\": "tests/" } }, "scripts": { "test": "phpunit" }, "extra": { "laravel": { "providers": [ "Redbox\\Tracker\\Providers\\TrackerServiceProvider" ], "aliases": { "Tracker": "Redbox\\Tracker\\Facades\\Tracker" } } } }