Home

Awesome

<h1 align="center">Laravel Stats</h1> <p align="center"> <a href="https://packagist.org/packages/wnx/laravel-stats"> <img src="https://poser.pugx.org/wnx/laravel-stats/v/stable" alt=""> </a> <a href="https://github.com/stefanzweifel/laravel-stats/actions?query=workflow%3A%22tests%22"> <img src="https://github.com/stefanzweifel/laravel-stats/workflows/tests/badge.svg" alt=""> </a> <a href="https://packagist.org/packages/wnx/laravel-stats"> <img src="https://poser.pugx.org/wnx/laravel-stats/downloads" alt=""> </a> <a href="https://plant.treeware.earth/stefanzweifel/laravel-stats"> <img src="https://img.shields.io/badge/Treeware-%F0%9F%8C%B3-lightgreen" alt="Buy us a tree"> </a> </p> <p align="center"> Get insights about your Laravel or Lumen Project. </p>

Screenshot

Installing

The easiest way to install the package is by using composer.

composer require "wnx/laravel-stats" --dev

The package will automatically register itself.

If you're using Lumen you have to manually register the Service Provider in your bootstrap/app.php file:

$app->register(\Wnx\LaravelStats\StatsServiceProvider::class);

Optionally, you can publish the config file in your Laravel applications with the following command:

php artisan vendor:publish --provider="Wnx\LaravelStats\StatsServiceProvider"

Usage

After installing you can generate the statistics by running the following Artisan Command.

php artisan stats

(Make sure you run php artisan config:clear before running the above command.)

The statistics are also available as JSON.

php artisan stats --json

If you want a more detailed report and see which classes have been grouped into which component, you can use the --verbose-option.

php artisan stats --verbose

The verbose option is available for the JSON format also.

php artisan stats --json --verbose

Note If your project is using Pest PHP for writing tests, these files will automatically be excluded from the statistics. Due to how "laravel-stats" works internally, Pest PHP tests can't currently be detected. See #194 for more information.

How does this package detect certain Laravel Components?

The package scans the files defined in the paths-array in the configuration file. It then applies Classifiers to those classes to determine which Laravel Component the class represents.

ComponentClassification
Livewire ComponentsMust extend Livewire\Component
ControllerMust be registered with a Route & does not extend Livewire\Component
ModelMust extend Illuminate\Database\Eloquent\Model
CommandMust extend Illuminate\Console\Command
RuleMust extend Illuminate\Contracts\Validation\Rule
PolicyThe Policy must be registered in your AuthServiceProvider
MiddlewareThe Middleware must be registered in your Http-Kernel
EventMust use Illuminate\Foundation\Events\Dispatchable-Trait
Event ListenerMust be registered for an Event in EventServiceProvider
MailMust extend Illuminate\Mail\Mailable
NotificationMust extend Illuminate\Notifications\Notification
Nova ActionMust extend Laravel\Nova\Actions\Action
Nova DashboardMust extend Laravel\Nova\Dashboard
Nova FilterMust extend Laravel\Nova\Filters\Filter
Nova LensMust extend Laravel\Nova\Lenses\Lens
Nova ResourceMust extend Laravel\Nova\Resource
JobMust use Illuminate\Foundation\Bus\Dispatchable-Trait
MigrationMust extend Illuminate\Database\Migrations\Migration
RequestMust extend Illuminate\Foundation\Http\FormRequest
ResourceMust extend Illuminate\Http\Resources\Json\JsonResource or Illuminate\Http\Resources\Json\ResourceCollection
SeederMust extend Illuminate\Database\Seeder
ServiceProviderMust extend Illuminate\Support\ServiceProvider
Blade ComponentsMust extend Illuminate\View\Component
Custom CastsMust implement Illuminate\Contracts\Database\Eloquent\CastsAttributes or Illuminate\Contracts\Database\Eloquent\CastsInboundAttributes
Database FactoryMust extend Illuminate\Database\Eloquent\Factory
Dusk TestsMust extend Laravel\Dusk\TestCase
BrowserKit TestMust extend Laravel\BrowserKitTesting\TestCase
PHPUnit TestMust extend PHPUnit\Framework\TestCase

Create your own Classifiers

If your application has it's own components you would like to see in laravel-stats you can create your own "Classifiers". Create your own Classifiers by implementing the Classifier-contract and adding the class to the stats.custom_component_classifier config array.

For example:

// app/Classifiers/RepositoryClassifier.php
<?php

namespace App\Classifiers;

use Wnx\LaravelStats\ReflectionClass;
use Wnx\LaravelStats\Contracts\Classifier;

class RepositoryClassifier implements Classifier
{
    public function name(): string
    {
        return 'Repositories';
    }

    public function satisfies(ReflectionClass $class): bool
    {
        return $class->isSubclassOf(\App\Repositories\BaseRepository::class);
    }

    public function countsTowardsApplicationCode(): bool
    {
        return true;
    }

    public function countsTowardsTests(): bool
    {
        return false;
    }
}
// config/stats.php
<?php
    ...
    'custom_component_classifier' => [
        \App\Classifiers\RepositoryClassifier::class
    ],
    ...

Treeware

You're free to use this package, but if it makes it to your production environment you are required to buy the world a tree.

It’s now common knowledge that one of the best tools to tackle the climate crisis and keep our temperatures from rising above 1.5C is to <a href="https://www.bbc.co.uk/news/science-environment-48870920">plant trees</a>. If you support this package and contribute to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.

You can buy trees here offset.earth/treeware

Read more about Treeware at treeware.earth

Running the tests

The package has tests written in phpunit. You can run them with the following command.

./vendor/bin/phpunit

Running the command in a local test project

If you're working on the package locally and want to just run the command in a demo project you can use the composer path-repository format. Add the following snippet to the composer.json in your demo project.

{
    "repositories": [
        {
            "type": "path",
            "url": "/path/to/laravel-stats/",
            "options": {
                "symlink": true
            }
        }
    ],
}

And "install" the package with composer require wnx/laravel-stats. The package should now be symlinked in your demo project.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Credits

License

This project is licensed under the MIT License - see the LICENSE file for details.