ismaelillodev/fathom-analytics

This is my package fathom-analytics

dev-main 2024-04-15 19:34 UTC

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.