├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── AnalyticsReports.php ├── AnalyticsReportsFacade.php ├── AnalyticsReportsServiceProvider.php └── config │ └── config.php └── tests └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/analytics-reports/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/analytics-reports/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/analytics-reports/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/analytics-reports/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/analytics-reports/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/analytics-reports/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/analytics-reports/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/AnalyticsReports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/analytics-reports/HEAD/src/AnalyticsReports.php -------------------------------------------------------------------------------- /src/AnalyticsReportsFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/analytics-reports/HEAD/src/AnalyticsReportsFacade.php -------------------------------------------------------------------------------- /src/AnalyticsReportsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/analytics-reports/HEAD/src/AnalyticsReportsServiceProvider.php -------------------------------------------------------------------------------- /src/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/analytics-reports/HEAD/src/config/config.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------