ismaelillodev / fathom-analytics
This is my package fathom-analytics
Fund package maintenance!
ismaelillodev
Requires
- php: ^8.1
- guzzlehttp/guzzle: ^7.2
- illuminate/contracts: ^10.0
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- larastan/larastan: ^2.0.1
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.8
- orchestra/testbench: ^8.8
- pestphp/pest: ^2.20
- pestphp/pest-plugin-arch: ^2.5
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2025-03-08 21:15:13 UTC
README
This package is under development right now. Any suggestions are greatly appreciated!
Installation
Install the package via composer:
composer require ismaelillodev/fathom-analytics:dev-main
Publish the config file with:
php artisan vendor:publish --tag="fathom-analytics-config"
Add your FATHOM_ACCESS_TOKEN variable to your .env
Usage
use Ismaelillodev\FathomAnalytics\DTO\Aggregation; use Ismaelillodev\FathomAnalytics\FathomAnalytics; public function __construct( private FathomAnalytics $fathomAnalytics ){} public function handle() { $response = $this->fathomAnalytics->aggregations( new Aggregation( entity: 'pageview', entity_id: 'your_site_id', aggregates: 'uniques', field_grouping: 'hostname,pathname' )); //do something awesome with the response! }
Current features
If you have any questions about how to make a specific request you can visit the API documentation (https://usefathom.com/api).
Aggregations
Call the aggregations function and pass an Aggregation DTO.
$this->fathomAnalytics->aggregations( new Aggregation( entity: 'pageview', entity_id: 'your_site_id', aggregates: 'visits', ));
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.