Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 21 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
#name: Continuous Integration
#
#on: [push, pull_request]
#
#jobs:
# ci:
# name: CI
# uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1
# with:
# phplinting: false
# js: false
name: CI

on:
push:
pull_request:
workflow_dispatch:

permissions: {}

jobs:
ci:
name: CI
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v2
permissions:
pull-requests: read
contents: write
actions: write
with:
phplinting: false
js: false
simple_matrix: true
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# Analytics for Silverstripe

<br>

![Packagist Version](https://img.shields.io/packagist/v/wakeworks/Analytics?style=flat-square)
![GitHub](https://img.shields.io/github/license/wakeworks/Analytics?style=flat-square)
![Scrutinizer code quality (GitHub/Bitbucket)](https://img.shields.io/scrutinizer/quality/g/Zazama/Analytics?style=flat-square)

## Introduction

This module enables basic analytics in Silverstripe without saving identifying data.
Expand All @@ -14,10 +8,10 @@ This module enables basic analytics in Silverstripe without saving identifying d

## Requirements

* silverstripe/framework ^5
* silverstripe/admin ^2
* silverstripe/framework ^6
* silverstripe/admin ^3

For Silverstripe 4, check out version/branch 1.
For Silverstripe 5, check out version/branch 2, for Silverstripe 4, check out version/branch 1.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion client/dist/js/bundle.js

Large diffs are not rendered by default.

13 changes: 2 additions & 11 deletions client/dist/js/bundle.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
/*!
* ApexCharts v3.37.0
* (c) 2018-2023 ApexCharts
* Released under the MIT License.
* ApexCharts v5.10.6
* (c) 2018-2026 ApexCharts
*/

/*! svg.draggable.js - v2.2.2 - 2019-01-08
* https://github.com/svgdotjs/svg.draggable.js
* Copyright (c) 2019 Wout Fierens; Licensed MIT */

/*! svg.filter.js - v2.0.2 - 2016-02-24
* https://github.com/wout/svg.filter.js
* Copyright (c) 2016 Wout Fierens; Licensed MIT */
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
}
],
"require": {
"silverstripe/framework": "^5",
"silverstripe/admin": "^2",
"silverstripe/vendor-plugin": "^2",
"matomo/device-detector": "^4.3",
"silverstripe/framework": "^6",
"silverstripe/admin": "^3",
"silverstripe/vendor-plugin": "^3",
"matomo/device-detector": "^6.5",
"ramsey/uuid": "^4"
},
"require-dev": {
"silverstripe/recipe-testing": "^3.0"
"silverstripe/recipe-testing": "^4.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading
Loading