Download the PHP package spatie/laravel-analytics without Composer

On this page you can find all versions of the php package spatie/laravel-analytics. 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-analytics

Retrieve data from Google Analytics

Latest Version Check & fix styling Total Downloads

Using this package you can easily retrieve data from Google Analytics.

Here are a few examples of the provided methods:

Most methods will return an \Illuminate\Support\Collection object containing the results.

Support us

We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.

Installation

This package can be installed through Composer.

Optionally, you can publish the config file of this package with this command:

The following config file will be published in config/analytics.php

How to obtain the credentials to communicate with Google Analytics

Getting credentials

The first thing you’ll need to do is to get some credentials to use Google API’s. I’m assuming that you’ve already created a Google account and are signed in. Head over to Google API’s site and select or create a project.

1

Next up we must specify which API’s the project may consume. Go to the API Library and search for "Google Analytics Data API".

2 3

Choose enable to enable the API. 4

Now that you’ve created a project that has access to the Analytics API it’s time to download a file with these credentials. Click "Credentials" in the sidebar. You’ll want to create a "Service account key". 5

On the next screen you can give the service account a name. You can name it anything you’d like. In the service account id you’ll see an email address. We’ll use this email address later on in this guide.

6

Go to the details screen of your created service account and select "keys", from the "Add key" dropdown select "Create new key".

7

Select "JSON" as the key type and click "Create" to download the JSON file.

8

Save the json inside your Laravel project at the location specified in the service_account_credentials_json key of the config file of this package. Because the json file contains potentially sensitive information I don't recommend committing it to your git repository.

Granting permissions to your Analytics property

I'm assuming that you've already created a Analytics account on the Analytics site and are using the new GA4 properties.

First you will need to know your property ID. In Analytics, go to Settings > Property Settings. Here you will be able to copy your property ID. Use this value for the ANALYTICS_PROPERTY_ID key in your .env file.

a1

Now we will need to give access to the service account you created. Go to "Property Access Management" in the Admin-section of the property. Click the plus sign in the top right corner to add a new user.

On this screen you can grant access to the email address found in the client_email key from the json file you download in the previous step. Analyst role is enough.

a2

Usage

When the installation is done you can easily retrieve Analytics data. Nearly all methods will return an Illuminate\Support\Collection-instance.

Here are a few examples using periods

$analyticsData is a Collection in which each item is an array that holds keys date, visitors and pageViews

If you want to have more control over the period you want to fetch data for, you can pass a startDate and an endDate to the period object.

Provided methods

Visitors and page views

The function returns a Collection in which each item is an array that holds keys activeUsers, screenPageViews and pageTitle.

Visitors and page views by date

The function returns a Collection in which each item is an array that holds keys date, activeUsers, screenPageViews and pageTitle.

Total visitors and pageviews

The function returns a Collection in which each item is an array that holds keys date, date, visitors, and pageViews.

Most visited pages

The function returns a Collection in which each item is an array that holds keys fullPageUrl, pageTitle and screenPageViews.

Top referrers

The function returns a Collection in which each item is an array that holds keys screenPageViews and pageReferrer.

User Types

The function returns a Collection in which each item is an array that holds keys activeUsers and newVsReturning which can equal to new or returning.

Top browsers

The function returns a Collection in which each item is an array that holds keys screenPageViews and browser.

Top countries

The function returns a Collection in which each item is an array that holds keys screenPageViews and country.

Top operating systems

The function returns a Collection in which each item is an array that holds keys screenPageViews and operatingSystem.

All other Google Analytics queries

For all other queries you can use the get function.

Here's some extra info on the arguments you can pass:

Period $period: a Spatie\Analytics\Period object to indicate that start and end date for your query.

array $metrics: an array of metrics to retrieve. You can find a list of all metrics here.

array $dimensions: an array of dimensions to group the results by. You can find a list of all dimensions here.

int $limit: the maximum number of results to return.

array $orderBy: of OrderBy objects to sort the results by.

array $offset: Defaults to 0, you can use this in combination with the $limit param to have pagination.

bool $keepEmptyRows: If false or unspecified, each row with all metrics equal to 0 will not be returned. If true, these rows will be returned if they are not separately removed by a filter.

For example:

FilterExpression $dimensionFilter: filter the result to include only specific dimension values. You can find more details here.

For example:

Testing

Run the tests with:

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you've found a bug regarding security please mail [email protected] instead of using the issue tracker.

Credits

And a special thanks to Caneco for the logo ✨

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-analytics with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
google/analytics-data Version ^0.9.4
laravel/framework Version ^10.0|^11.0
nesbot/carbon Version ^2.66|^3.1.0
spatie/laravel-package-tools Version ^1.13.7
symfony/cache Version ^6.0|^7.0
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 spatie/laravel-analytics contains the following files

Loading the files please wait ....