├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── UPGRADING.md ├── composer.json ├── database └── migrations │ └── create_stats_tables.php.stub └── src ├── BaseStats.php ├── DataPoint.php ├── Models └── StatsEvent.php ├── StatsQuery.php ├── StatsServiceProvider.php ├── StatsWriter.php └── Traits └── HasStats.php /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/composer.json -------------------------------------------------------------------------------- /database/migrations/create_stats_tables.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/database/migrations/create_stats_tables.php.stub -------------------------------------------------------------------------------- /src/BaseStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/src/BaseStats.php -------------------------------------------------------------------------------- /src/DataPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/src/DataPoint.php -------------------------------------------------------------------------------- /src/Models/StatsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/src/Models/StatsEvent.php -------------------------------------------------------------------------------- /src/StatsQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/src/StatsQuery.php -------------------------------------------------------------------------------- /src/StatsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/src/StatsServiceProvider.php -------------------------------------------------------------------------------- /src/StatsWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/src/StatsWriter.php -------------------------------------------------------------------------------- /src/Traits/HasStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-stats/HEAD/src/Traits/HasStats.php --------------------------------------------------------------------------------