init laravel zero for fun

Chasesomero
Mar 6, 2026, 2:07 AM
32ICZXL46QYHSFGB4PQGZMUVMQNR5N4UFZ45WPMVGL5PNBFNXK2QC

Dependencies

Change contents

  • file addition: tests (d--r------)
    [2.1]
  • file addition: Unit (d--r------)
    [0.17]
  • file addition: ExampleTest.php (----------)
    [0.35]
    <?php
    test('example', function () {
    expect(true)->toBeTrue();
    });
  • file addition: TestCase.php (----------)
    [0.17]
    <?php
    namespace Tests;
    use LaravelZero\Framework\Testing\TestCase as BaseTestCase;
    abstract class TestCase extends BaseTestCase {}
  • file addition: Pest.php (----------)
    [0.17]
    <?php
    /*
    |--------------------------------------------------------------------------
    | Test Case
    |--------------------------------------------------------------------------
    |
    | The closure you provide to your test functions is always bound to a specific PHPUnit test
    | case class. By default, that class is "PHPUnit\Framework\TestCase". Of course, you may
    | need to change it using the "uses()" function to bind a different classes or traits.
    |
    */
    uses(Tests\TestCase::class)->in('Feature');
    /*
    |--------------------------------------------------------------------------
    | Expectations
    |--------------------------------------------------------------------------
    |
    | When you're writing tests, you often need to check that values meet certain conditions. The
    | "expect()" function gives you access to a set of "expectations" methods that you can use
    | to assert different things. Of course, you may extend the Expectation API at any time.
    |
    */
    expect()->extend('toBeOne', function () {
    return $this->toBe(1);
    });
    /*
    |--------------------------------------------------------------------------
    | Functions
    |--------------------------------------------------------------------------
    |
    | While Pest is very powerful out-of-the-box, you may have some testing code specific to your
    | project that you don't want to repeat in every file. Here you can also expose helpers as
    | global functions to help you to reduce the number of lines of code in your test files.
    |
    */
    function something(): void
    {
    // ..
    }
  • file addition: Feature (d--r------)
    [0.17]
  • file addition: InspireCommandTest.php (---r------)
    [0.1888]
    <?php
    it('inspires artisans', function () {
    $this->artisan('inspire')->assertExitCode(0);
    });
  • file addition: phpunit.xml.dist (----------)
    [2.1]
    <?xml version="1.0" encoding="UTF-8"?>
    <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
    bootstrap="vendor/autoload.php"
    colors="true"
    >
    <testsuites>
    <testsuite name="Feature">
    <directory>./tests/Feature</directory>
    </testsuite>
    <testsuite name="Unit">
    <directory>./tests/Unit</directory>
    </testsuite>
    </testsuites>
    <source>
    <include>
    <directory>./app</directory>
    </include>
    </source>
    </phpunit>
  • file addition: config (d--r------)
    [2.1]
  • file addition: commands.php (----------)
    [0.2704]
    <?php
    return [
    /*
    |--------------------------------------------------------------------------
    | Default Command
    |--------------------------------------------------------------------------
    |
    | Laravel Zero will always run the command specified below when no command name is
    | provided. Consider update the default command for single command applications.
    | You cannot pass arguments to the default command because they are ignored.
    |
    */
    'default' => NunoMaduro\LaravelConsoleSummary\SummaryCommand::class,
    /*
    |--------------------------------------------------------------------------
    | Commands Paths
    |--------------------------------------------------------------------------
    |
    | This value determines the "paths" that should be loaded by the console's
    | kernel. Foreach "path" present on the array provided below the kernel
    | will extract all "Illuminate\Console\Command" based class commands.
    |
    */
    'paths' => [app_path('Commands')],
    /*
    |--------------------------------------------------------------------------
    | Added Commands
    |--------------------------------------------------------------------------
    |
    | You may want to include a single command class without having to load an
    | entire folder. Here you can specify which commands should be added to
    | your list of commands. The console's kernel will try to load them.
    |
    */
    'add' => [
    //
    ],
    /*
    |--------------------------------------------------------------------------
    | Hidden Commands
    |--------------------------------------------------------------------------
    |
    | Your application commands will always be visible on the application list
    | of commands. But you can still make them "hidden" specifying an array
    | of commands below. All "hidden" commands can still be run/executed.
    |
    */
    'hidden' => [
    NunoMaduro\LaravelConsoleSummary\SummaryCommand::class,
    Symfony\Component\Console\Command\DumpCompletionCommand::class,
    Symfony\Component\Console\Command\HelpCommand::class,
    Illuminate\Console\Scheduling\ScheduleRunCommand::class,
    Illuminate\Console\Scheduling\ScheduleListCommand::class,
    Illuminate\Console\Scheduling\ScheduleFinishCommand::class,
    Illuminate\Foundation\Console\VendorPublishCommand::class,
    LaravelZero\Framework\Commands\StubPublishCommand::class,
    ],
    /*
    |--------------------------------------------------------------------------
    | Removed Commands
    |--------------------------------------------------------------------------
    |
    | Do you have a service provider that loads a list of commands that
    | you don't need? No problem. Laravel Zero allows you to specify
    | below a list of commands that you don't to see in your app.
    |
    */
    'remove' => [
    //
    ],
    ];
  • file addition: app.php (----------)
    [0.2704]
    <?php
    return [
    /*
    |--------------------------------------------------------------------------
    | Application Name
    |--------------------------------------------------------------------------
    |
    | This value is the name of your application. This value is used when the
    | framework needs to place the application's name in a notification or
    | any other location as required by the application or its packages.
    |
    */
    'name' => 'Application',
    /*
    |--------------------------------------------------------------------------
    | Application Version
    |--------------------------------------------------------------------------
    |
    | This value determines the "version" your application is currently running
    | in. You may want to follow the "Semantic Versioning" - Given a version
    | number MAJOR.MINOR.PATCH when an update happens: https://semver.org.
    |
    */
    'version' => app('git.version'),
    /*
    |--------------------------------------------------------------------------
    | Application Environment
    |--------------------------------------------------------------------------
    |
    | This value determines the "environment" your application is currently
    | running in. This may determine how you prefer to configure various
    | services the application utilizes. This can be overridden using
    | the global command line "--env" option when calling commands.
    |
    */
    'env' => 'development',
    /*
    |--------------------------------------------------------------------------
    | Autoloaded Service Providers
    |--------------------------------------------------------------------------
    |
    | The service providers listed here will be automatically loaded on the
    | request to your application. Feel free to add your own services to
    | this array to grant expanded functionality to your applications.
    |
    */
    'providers' => [
    App\Providers\AppServiceProvider::class,
    ],
    ];
  • file addition: composer.lock (----------)
    [2.1]
    {
    "_readme": [
    "This file locks the dependencies of your project to a known state",
    "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
    "This file is @generated automatically"
    ],
    "content-hash": "430ca8d90f0d563a76e8d483ae41b908",
    "packages": [
    {
    "name": "brick/math",
    "version": "0.14.8",
    "source": {
    "type": "git",
    "url": "https://github.com/brick/math.git",
    "reference": "63422359a44b7f06cae63c3b429b59e8efcc0629"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/brick/math/zipball/63422359a44b7f06cae63c3b429b59e8efcc0629",
    "reference": "63422359a44b7f06cae63c3b429b59e8efcc0629",
    "shasum": ""
    },
    "require": {
    "php": "^8.2"
    },
    "require-dev": {
    "php-coveralls/php-coveralls": "^2.2",
    "phpstan/phpstan": "2.1.22",
    "phpunit/phpunit": "^11.5"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "Brick\\Math\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "description": "Arbitrary-precision arithmetic library",
    "keywords": [
    "Arbitrary-precision",
    "BigInteger",
    "BigRational",
    "arithmetic",
    "bigdecimal",
    "bignum",
    "bignumber",
    "brick",
    "decimal",
    "integer",
    "math",
    "mathematics",
    "rational"
    ],
    "support": {
    "issues": "https://github.com/brick/math/issues",
    "source": "https://github.com/brick/math/tree/0.14.8"
    },
    "funding": [
    {
    "url": "https://github.com/BenMorel",
    "type": "github"
    }
    ],
    "time": "2026-02-10T14:33:43+00:00"
    },
    {
    "name": "carbonphp/carbon-doctrine-types",
    "version": "3.2.0",
    "source": {
    "type": "git",
    "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
    "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
    "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
    "shasum": ""
    },
    "require": {
    "php": "^8.1"
    },
    "conflict": {
    "doctrine/dbal": "<4.0.0 || >=5.0.0"
    },
    "require-dev": {
    "doctrine/dbal": "^4.0.0",
    "nesbot/carbon": "^2.71.0 || ^3.0.0",
    "phpunit/phpunit": "^10.3"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "KyleKatarn",
    "email": "kylekatarnls@gmail.com"
    }
    ],
    "description": "Types to use Carbon in Doctrine",
    "keywords": [
    "carbon",
    "date",
    "datetime",
    "doctrine",
    "time"
    ],
    "support": {
    "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
    "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
    },
    "funding": [
    {
    "url": "https://github.com/kylekatarnls",
    "type": "github"
    },
    {
    "url": "https://opencollective.com/Carbon",
    "type": "open_collective"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
    "type": "tidelift"
    }
    ],
    "time": "2024-02-09T16:56:22+00:00"
    },
    {
    "name": "doctrine/inflector",
    "version": "2.1.0",
    "source": {
    "type": "git",
    "url": "https://github.com/doctrine/inflector.git",
    "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b",
    "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b",
    "shasum": ""
    },
    "require": {
    "php": "^7.2 || ^8.0"
    },
    "require-dev": {
    "doctrine/coding-standard": "^12.0 || ^13.0",
    "phpstan/phpstan": "^1.12 || ^2.0",
    "phpstan/phpstan-phpunit": "^1.4 || ^2.0",
    "phpstan/phpstan-strict-rules": "^1.6 || ^2.0",
    "phpunit/phpunit": "^8.5 || ^12.2"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "Doctrine\\Inflector\\": "src"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Guilherme Blanco",
    "email": "guilhermeblanco@gmail.com"
    },
    {
    "name": "Roman Borschel",
    "email": "roman@code-factory.org"
    },
    {
    "name": "Benjamin Eberlei",
    "email": "kontakt@beberlei.de"
    },
    {
    "name": "Jonathan Wage",
    "email": "jonwage@gmail.com"
    },
    {
    "name": "Johannes Schmitt",
    "email": "schmittjoh@gmail.com"
    }
    ],
    "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
    "homepage": "https://www.doctrine-project.org/projects/inflector.html",
    "keywords": [
    "inflection",
    "inflector",
    "lowercase",
    "manipulation",
    "php",
    "plural",
    "singular",
    "strings",
    "uppercase",
    "words"
    ],
    "support": {
    "issues": "https://github.com/doctrine/inflector/issues",
    "source": "https://github.com/doctrine/inflector/tree/2.1.0"
    },
    "funding": [
    {
    "url": "https://www.doctrine-project.org/sponsorship.html",
    "type": "custom"
    },
    {
    "url": "https://www.patreon.com/phpdoctrine",
    "type": "patreon"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
    "type": "tidelift"
    }
    ],
    "time": "2025-08-10T19:31:58+00:00"
    },
    {
    "name": "dragonmantank/cron-expression",
    "version": "v3.6.0",
    "source": {
    "type": "git",
    "url": "https://github.com/dragonmantank/cron-expression.git",
    "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/d61a8a9604ec1f8c3d150d09db6ce98b32675013",
    "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013",
    "shasum": ""
    },
    "require": {
    "php": "^8.2|^8.3|^8.4|^8.5"
    },
    "replace": {
    "mtdowling/cron-expression": "^1.0"
    },
    "require-dev": {
    "phpstan/extension-installer": "^1.4.3",
    "phpstan/phpstan": "^1.12.32|^2.1.31",
    "phpunit/phpunit": "^8.5.48|^9.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "3.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Cron\\": "src/Cron/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Chris Tankersley",
    "email": "chris@ctankersley.com",
    "homepage": "https://github.com/dragonmantank"
    }
    ],
    "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
    "keywords": [
    "cron",
    "schedule"
    ],
    "support": {
    "issues": "https://github.com/dragonmantank/cron-expression/issues",
    "source": "https://github.com/dragonmantank/cron-expression/tree/v3.6.0"
    },
    "funding": [
    {
    "url": "https://github.com/dragonmantank",
    "type": "github"
    }
    ],
    "time": "2025-10-31T18:51:33+00:00"
    },
    {
    "name": "filp/whoops",
    "version": "2.18.4",
    "source": {
    "type": "git",
    "url": "https://github.com/filp/whoops.git",
    "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d",
    "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d",
    "shasum": ""
    },
    "require": {
    "php": "^7.1 || ^8.0",
    "psr/log": "^1.0.1 || ^2.0 || ^3.0"
    },
    "require-dev": {
    "mockery/mockery": "^1.0",
    "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
    "symfony/var-dumper": "^4.0 || ^5.0"
    },
    "suggest": {
    "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
    "whoops/soap": "Formats errors as SOAP responses"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "2.7-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Whoops\\": "src/Whoops/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Filipe Dobreira",
    "homepage": "https://github.com/filp",
    "role": "Developer"
    }
    ],
    "description": "php error handling for cool kids",
    "homepage": "https://filp.github.io/whoops/",
    "keywords": [
    "error",
    "exception",
    "handling",
    "library",
    "throwable",
    "whoops"
    ],
    "support": {
    "issues": "https://github.com/filp/whoops/issues",
    "source": "https://github.com/filp/whoops/tree/2.18.4"
    },
    "funding": [
    {
    "url": "https://github.com/denis-sokolov",
    "type": "github"
    }
    ],
    "time": "2025-08-08T12:00:00+00:00"
    },
    {
    "name": "graham-campbell/result-type",
    "version": "v1.1.4",
    "source": {
    "type": "git",
    "url": "https://github.com/GrahamCampbell/Result-Type.git",
    "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
    "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
    "shasum": ""
    },
    "require": {
    "php": "^7.2.5 || ^8.0",
    "phpoption/phpoption": "^1.9.5"
    },
    "require-dev": {
    "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "GrahamCampbell\\ResultType\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Graham Campbell",
    "email": "hello@gjcampbell.co.uk",
    "homepage": "https://github.com/GrahamCampbell"
    }
    ],
    "description": "An Implementation Of The Result Type",
    "keywords": [
    "Graham Campbell",
    "GrahamCampbell",
    "Result Type",
    "Result-Type",
    "result"
    ],
    "support": {
    "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
    "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
    },
    "funding": [
    {
    "url": "https://github.com/GrahamCampbell",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
    "type": "tidelift"
    }
    ],
    "time": "2025-12-27T19:43:20+00:00"
    },
    {
    "name": "guzzlehttp/guzzle",
    "version": "7.10.0",
    "source": {
    "type": "git",
    "url": "https://github.com/guzzle/guzzle.git",
    "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
    "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
    "shasum": ""
    },
    "require": {
    "ext-json": "*",
    "guzzlehttp/promises": "^2.3",
    "guzzlehttp/psr7": "^2.8",
    "php": "^7.2.5 || ^8.0",
    "psr/http-client": "^1.0",
    "symfony/deprecation-contracts": "^2.2 || ^3.0"
    },
    "provide": {
    "psr/http-client-implementation": "1.0"
    },
    "require-dev": {
    "bamarni/composer-bin-plugin": "^1.8.2",
    "ext-curl": "*",
    "guzzle/client-integration-tests": "3.0.2",
    "php-http/message-factory": "^1.1",
    "phpunit/phpunit": "^8.5.39 || ^9.6.20",
    "psr/log": "^1.1 || ^2.0 || ^3.0"
    },
    "suggest": {
    "ext-curl": "Required for CURL handler support",
    "ext-intl": "Required for Internationalized Domain Name (IDN) support",
    "psr/log": "Required for using the Log middleware"
    },
    "type": "library",
    "extra": {
    "bamarni-bin": {
    "bin-links": true,
    "forward-command": false
    }
    },
    "autoload": {
    "files": [
    "src/functions_include.php"
    ],
    "psr-4": {
    "GuzzleHttp\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Graham Campbell",
    "email": "hello@gjcampbell.co.uk",
    "homepage": "https://github.com/GrahamCampbell"
    },
    {
    "name": "Michael Dowling",
    "email": "mtdowling@gmail.com",
    "homepage": "https://github.com/mtdowling"
    },
    {
    "name": "Jeremy Lindblom",
    "email": "jeremeamia@gmail.com",
    "homepage": "https://github.com/jeremeamia"
    },
    {
    "name": "George Mponos",
    "email": "gmponos@gmail.com",
    "homepage": "https://github.com/gmponos"
    },
    {
    "name": "Tobias Nyholm",
    "email": "tobias.nyholm@gmail.com",
    "homepage": "https://github.com/Nyholm"
    },
    {
    "name": "Márk Sági-Kazár",
    "email": "mark.sagikazar@gmail.com",
    "homepage": "https://github.com/sagikazarmark"
    },
    {
    "name": "Tobias Schultze",
    "email": "webmaster@tubo-world.de",
    "homepage": "https://github.com/Tobion"
    }
    ],
    "description": "Guzzle is a PHP HTTP client library",
    "keywords": [
    "client",
    "curl",
    "framework",
    "http",
    "http client",
    "psr-18",
    "psr-7",
    "rest",
    "web service"
    ],
    "support": {
    "issues": "https://github.com/guzzle/guzzle/issues",
    "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
    },
    "funding": [
    {
    "url": "https://github.com/GrahamCampbell",
    "type": "github"
    },
    {
    "url": "https://github.com/Nyholm",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
    "type": "tidelift"
    }
    ],
    "time": "2025-08-23T22:36:01+00:00"
    },
    {
    "name": "guzzlehttp/promises",
    "version": "2.3.0",
    "source": {
    "type": "git",
    "url": "https://github.com/guzzle/promises.git",
    "reference": "481557b130ef3790cf82b713667b43030dc9c957"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
    "reference": "481557b130ef3790cf82b713667b43030dc9c957",
    "shasum": ""
    },
    "require": {
    "php": "^7.2.5 || ^8.0"
    },
    "require-dev": {
    "bamarni/composer-bin-plugin": "^1.8.2",
    "phpunit/phpunit": "^8.5.44 || ^9.6.25"
    },
    "type": "library",
    "extra": {
    "bamarni-bin": {
    "bin-links": true,
    "forward-command": false
    }
    },
    "autoload": {
    "psr-4": {
    "GuzzleHttp\\Promise\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Graham Campbell",
    "email": "hello@gjcampbell.co.uk",
    "homepage": "https://github.com/GrahamCampbell"
    },
    {
    "name": "Michael Dowling",
    "email": "mtdowling@gmail.com",
    "homepage": "https://github.com/mtdowling"
    },
    {
    "name": "Tobias Nyholm",
    "email": "tobias.nyholm@gmail.com",
    "homepage": "https://github.com/Nyholm"
    },
    {
    "name": "Tobias Schultze",
    "email": "webmaster@tubo-world.de",
    "homepage": "https://github.com/Tobion"
    }
    ],
    "description": "Guzzle promises library",
    "keywords": [
    "promise"
    ],
    "support": {
    "issues": "https://github.com/guzzle/promises/issues",
    "source": "https://github.com/guzzle/promises/tree/2.3.0"
    },
    "funding": [
    {
    "url": "https://github.com/GrahamCampbell",
    "type": "github"
    },
    {
    "url": "https://github.com/Nyholm",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
    "type": "tidelift"
    }
    ],
    "time": "2025-08-22T14:34:08+00:00"
    },
    {
    "name": "guzzlehttp/psr7",
    "version": "2.8.0",
    "source": {
    "type": "git",
    "url": "https://github.com/guzzle/psr7.git",
    "reference": "21dc724a0583619cd1652f673303492272778051"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
    "reference": "21dc724a0583619cd1652f673303492272778051",
    "shasum": ""
    },
    "require": {
    "php": "^7.2.5 || ^8.0",
    "psr/http-factory": "^1.0",
    "psr/http-message": "^1.1 || ^2.0",
    "ralouphie/getallheaders": "^3.0"
    },
    "provide": {
    "psr/http-factory-implementation": "1.0",
    "psr/http-message-implementation": "1.0"
    },
    "require-dev": {
    "bamarni/composer-bin-plugin": "^1.8.2",
    "http-interop/http-factory-tests": "0.9.0",
    "phpunit/phpunit": "^8.5.44 || ^9.6.25"
    },
    "suggest": {
    "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
    },
    "type": "library",
    "extra": {
    "bamarni-bin": {
    "bin-links": true,
    "forward-command": false
    }
    },
    "autoload": {
    "psr-4": {
    "GuzzleHttp\\Psr7\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Graham Campbell",
    "email": "hello@gjcampbell.co.uk",
    "homepage": "https://github.com/GrahamCampbell"
    },
    {
    "name": "Michael Dowling",
    "email": "mtdowling@gmail.com",
    "homepage": "https://github.com/mtdowling"
    },
    {
    "name": "George Mponos",
    "email": "gmponos@gmail.com",
    "homepage": "https://github.com/gmponos"
    },
    {
    "name": "Tobias Nyholm",
    "email": "tobias.nyholm@gmail.com",
    "homepage": "https://github.com/Nyholm"
    },
    {
    "name": "Márk Sági-Kazár",
    "email": "mark.sagikazar@gmail.com",
    "homepage": "https://github.com/sagikazarmark"
    },
    {
    "name": "Tobias Schultze",
    "email": "webmaster@tubo-world.de",
    "homepage": "https://github.com/Tobion"
    },
    {
    "name": "Márk Sági-Kazár",
    "email": "mark.sagikazar@gmail.com",
    "homepage": "https://sagikazarmark.hu"
    }
    ],
    "description": "PSR-7 message implementation that also provides common utility methods",
    "keywords": [
    "http",
    "message",
    "psr-7",
    "request",
    "response",
    "stream",
    "uri",
    "url"
    ],
    "support": {
    "issues": "https://github.com/guzzle/psr7/issues",
    "source": "https://github.com/guzzle/psr7/tree/2.8.0"
    },
    "funding": [
    {
    "url": "https://github.com/GrahamCampbell",
    "type": "github"
    },
    {
    "url": "https://github.com/Nyholm",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
    "type": "tidelift"
    }
    ],
    "time": "2025-08-23T21:21:41+00:00"
    },
    {
    "name": "illuminate/bus",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/bus.git",
    "reference": "c2ceb60c70961815f88da24ab0b7a7f32d47cf4e"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/bus/zipball/c2ceb60c70961815f88da24ab0b7a7f32d47cf4e",
    "reference": "c2ceb60c70961815f88da24ab0b7a7f32d47cf4e",
    "shasum": ""
    },
    "require": {
    "illuminate/collections": "^12.0",
    "illuminate/contracts": "^12.0",
    "illuminate/pipeline": "^12.0",
    "illuminate/support": "^12.0",
    "php": "^8.2"
    },
    "suggest": {
    "illuminate/queue": "Required to use closures when chaining jobs (^12.0)."
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Illuminate\\Bus\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Bus package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2026-02-23T15:43:34+00:00"
    },
    {
    "name": "illuminate/cache",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/cache.git",
    "reference": "3c83efd7f370baab2f4f39c036ee7402429f6a67"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/cache/zipball/3c83efd7f370baab2f4f39c036ee7402429f6a67",
    "reference": "3c83efd7f370baab2f4f39c036ee7402429f6a67",
    "shasum": ""
    },
    "require": {
    "illuminate/collections": "^12.0",
    "illuminate/contracts": "^12.0",
    "illuminate/macroable": "^12.0",
    "illuminate/support": "^12.0",
    "php": "^8.2"
    },
    "provide": {
    "psr/simple-cache-implementation": "1.0|2.0|3.0"
    },
    "suggest": {
    "ext-apcu": "Required to use the APC cache driver.",
    "ext-filter": "Required to use the DynamoDb cache driver.",
    "ext-memcached": "Required to use the memcached cache driver.",
    "illuminate/database": "Required to use the database cache driver (^12.0).",
    "illuminate/filesystem": "Required to use the file cache driver (^12.0).",
    "illuminate/redis": "Required to use the redis cache driver (^12.0).",
    "symfony/cache": "Required to use PSR-6 cache bridge (^7.2)."
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Illuminate\\Cache\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Cache package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2026-02-21T15:00:01+00:00"
    },
    {
    "name": "illuminate/collections",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/collections.git",
    "reference": "f35c084f0d9bc57895515cb4d0665797c66285fd"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/collections/zipball/f35c084f0d9bc57895515cb4d0665797c66285fd",
    "reference": "f35c084f0d9bc57895515cb4d0665797c66285fd",
    "shasum": ""
    },
    "require": {
    "illuminate/conditionable": "^12.0",
    "illuminate/contracts": "^12.0",
    "illuminate/macroable": "^12.0",
    "php": "^8.2",
    "symfony/polyfill-php83": "^1.33",
    "symfony/polyfill-php84": "^1.33",
    "symfony/polyfill-php85": "^1.33"
    },
    "suggest": {
    "illuminate/http": "Required to convert collections to API resources (^12.0).",
    "symfony/var-dumper": "Required to use the dump method (^7.2)."
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "files": [
    "functions.php",
    "helpers.php"
    ],
    "psr-4": {
    "Illuminate\\Support\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Collections package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2026-02-16T14:10:38+00:00"
    },
    {
    "name": "illuminate/conditionable",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/conditionable.git",
    "reference": "ec677967c1f2faf90b8428919124d2184a4c9b49"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/conditionable/zipball/ec677967c1f2faf90b8428919124d2184a4c9b49",
    "reference": "ec677967c1f2faf90b8428919124d2184a4c9b49",
    "shasum": ""
    },
    "require": {
    "php": "^8.2"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Illuminate\\Support\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Conditionable package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2025-05-13T15:08:45+00:00"
    },
    {
    "name": "illuminate/config",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/config.git",
    "reference": "7adbf5cc27081d4613e1fa2f4f53e2a4fc91ad53"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/config/zipball/7adbf5cc27081d4613e1fa2f4f53e2a4fc91ad53",
    "reference": "7adbf5cc27081d4613e1fa2f4f53e2a4fc91ad53",
    "shasum": ""
    },
    "require": {
    "illuminate/collections": "^12.0",
    "illuminate/contracts": "^12.0",
    "php": "^8.2"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Illuminate\\Config\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Config package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2025-10-26T17:11:19+00:00"
    },
    {
    "name": "illuminate/console",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/console.git",
    "reference": "d157620a044f712db4de637e96055791df8cedf3"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/console/zipball/d157620a044f712db4de637e96055791df8cedf3",
    "reference": "d157620a044f712db4de637e96055791df8cedf3",
    "shasum": ""
    },
    "require": {
    "ext-mbstring": "*",
    "illuminate/collections": "^12.0",
    "illuminate/contracts": "^12.0",
    "illuminate/macroable": "^12.0",
    "illuminate/support": "^12.0",
    "illuminate/view": "^12.0",
    "laravel/prompts": "^0.3.0",
    "nunomaduro/termwind": "^2.0",
    "php": "^8.2",
    "symfony/console": "^7.2.0",
    "symfony/polyfill-php83": "^1.33",
    "symfony/process": "^7.2.0"
    },
    "suggest": {
    "dragonmantank/cron-expression": "Required to use scheduler (^3.3.2).",
    "ext-pcntl": "Required to use signal trapping.",
    "guzzlehttp/guzzle": "Required to use the ping methods on schedules (^7.8).",
    "illuminate/bus": "Required to use the scheduled job dispatcher (^12.0).",
    "illuminate/container": "Required to use the scheduler (^12.0).",
    "illuminate/filesystem": "Required to use the generator command (^12.0).",
    "illuminate/queue": "Required to use closures for scheduled jobs (^12.0)."
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Illuminate\\Console\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Console package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2026-02-20T15:20:53+00:00"
    },
    {
    "name": "illuminate/container",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/container.git",
    "reference": "648307e8f54bcd9450c858f99abd11bc50c364a0"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/container/zipball/648307e8f54bcd9450c858f99abd11bc50c364a0",
    "reference": "648307e8f54bcd9450c858f99abd11bc50c364a0",
    "shasum": ""
    },
    "require": {
    "illuminate/contracts": "^12.0",
    "illuminate/reflection": "^12.0",
    "php": "^8.2",
    "psr/container": "^1.1.1|^2.0.1",
    "symfony/polyfill-php84": "^1.33",
    "symfony/polyfill-php85": "^1.33"
    },
    "provide": {
    "psr/container-implementation": "1.1|2.0"
    },
    "suggest": {
    "illuminate/auth": "Required to use the Auth attribute",
    "illuminate/cache": "Required to use the Cache attribute",
    "illuminate/config": "Required to use the Config attribute",
    "illuminate/database": "Required to use the DB attribute",
    "illuminate/filesystem": "Required to use the Storage attribute",
    "illuminate/log": "Required to use the Log or Context attributes"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Illuminate\\Container\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Container package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2026-02-12T16:13:27+00:00"
    },
    {
    "name": "illuminate/contracts",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/contracts.git",
    "reference": "099fd9b56ccaf776facaa27699b960a3f2451127"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/contracts/zipball/099fd9b56ccaf776facaa27699b960a3f2451127",
    "reference": "099fd9b56ccaf776facaa27699b960a3f2451127",
    "shasum": ""
    },
    "require": {
    "php": "^8.2",
    "psr/container": "^1.1.1|^2.0.1",
    "psr/simple-cache": "^1.0|^2.0|^3.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Illuminate\\Contracts\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Contracts package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2026-02-20T14:37:40+00:00"
    },
    {
    "name": "illuminate/events",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/events.git",
    "reference": "b71e42451496175f8fd898cb6a67ad7fd613d00b"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/events/zipball/b71e42451496175f8fd898cb6a67ad7fd613d00b",
    "reference": "b71e42451496175f8fd898cb6a67ad7fd613d00b",
    "shasum": ""
    },
    "require": {
    "illuminate/bus": "^12.0",
    "illuminate/collections": "^12.0",
    "illuminate/container": "^12.0",
    "illuminate/contracts": "^12.0",
    "illuminate/macroable": "^12.0",
    "illuminate/support": "^12.0",
    "php": "^8.2"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "files": [
    "functions.php"
    ],
    "psr-4": {
    "Illuminate\\Events\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Events package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2026-02-23T15:43:34+00:00"
    },
    {
    "name": "illuminate/filesystem",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/filesystem.git",
    "reference": "c4c3f8612f218afcf09f3c7f5c7dc9e282626800"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/filesystem/zipball/c4c3f8612f218afcf09f3c7f5c7dc9e282626800",
    "reference": "c4c3f8612f218afcf09f3c7f5c7dc9e282626800",
    "shasum": ""
    },
    "require": {
    "illuminate/collections": "^12.0",
    "illuminate/contracts": "^12.0",
    "illuminate/macroable": "^12.0",
    "illuminate/support": "^12.0",
    "php": "^8.2",
    "symfony/finder": "^7.2.0"
    },
    "suggest": {
    "ext-fileinfo": "Required to use the Filesystem class.",
    "ext-ftp": "Required to use the Flysystem FTP driver.",
    "ext-hash": "Required to use the Filesystem class.",
    "illuminate/http": "Required for handling uploaded files (^12.0).",
    "league/flysystem": "Required to use the Flysystem local driver (^3.25.1).",
    "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
    "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
    "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
    "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
    "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).",
    "symfony/mime": "Required to enable support for guessing extensions (^7.2)."
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "files": [
    "functions.php"
    ],
    "psr-4": {
    "Illuminate\\Filesystem\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Filesystem package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2026-02-13T20:26:32+00:00"
    },
    {
    "name": "illuminate/macroable",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/macroable.git",
    "reference": "e862e5648ee34004fa56046b746f490dfa86c613"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/macroable/zipball/e862e5648ee34004fa56046b746f490dfa86c613",
    "reference": "e862e5648ee34004fa56046b746f490dfa86c613",
    "shasum": ""
    },
    "require": {
    "php": "^8.2"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Illuminate\\Support\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Macroable package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2024-07-23T16:31:01+00:00"
    },
    {
    "name": "illuminate/pipeline",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/pipeline.git",
    "reference": "b6a14c20d69a44bf0a6fba664a00d23ca71770ee"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/pipeline/zipball/b6a14c20d69a44bf0a6fba664a00d23ca71770ee",
    "reference": "b6a14c20d69a44bf0a6fba664a00d23ca71770ee",
    "shasum": ""
    },
    "require": {
    "illuminate/contracts": "^12.0",
    "illuminate/macroable": "^12.0",
    "illuminate/support": "^12.0",
    "php": "^8.2"
    },
    "suggest": {
    "illuminate/database": "Required to use database transactions (^12.0)."
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Illuminate\\Pipeline\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Pipeline package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2025-08-20T13:36:50+00:00"
    },
    {
    "name": "illuminate/process",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/process.git",
    "reference": "40d5e757b71654ad28d2ecfa5652e00e55b3fc5b"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/process/zipball/40d5e757b71654ad28d2ecfa5652e00e55b3fc5b",
    "reference": "40d5e757b71654ad28d2ecfa5652e00e55b3fc5b",
    "shasum": ""
    },
    "require": {
    "illuminate/collections": "^12.0",
    "illuminate/contracts": "^12.0",
    "illuminate/macroable": "^12.0",
    "illuminate/support": "^12.0",
    "php": "^8.2",
    "symfony/process": "^7.2.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Illuminate\\Process\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Process package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2026-02-09T20:42:48+00:00"
    },
    {
    "name": "illuminate/reflection",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/reflection.git",
    "reference": "6188e97a587371b9951c2a7e337cd760308c17d7"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/reflection/zipball/6188e97a587371b9951c2a7e337cd760308c17d7",
    "reference": "6188e97a587371b9951c2a7e337cd760308c17d7",
    "shasum": ""
    },
    "require": {
    "illuminate/collections": "^12.0",
    "illuminate/contracts": "^12.0",
    "php": "^8.2"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "files": [
    "helpers.php"
    ],
    "psr-4": {
    "Illuminate\\Support\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Reflection package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2026-02-04T15:21:22+00:00"
    },
    {
    "name": "illuminate/support",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/support.git",
    "reference": "18d7d75366ddb9eded3b7f05173f791da47faf34"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/support/zipball/18d7d75366ddb9eded3b7f05173f791da47faf34",
    "reference": "18d7d75366ddb9eded3b7f05173f791da47faf34",
    "shasum": ""
    },
    "require": {
    "doctrine/inflector": "^2.0",
    "ext-ctype": "*",
    "ext-filter": "*",
    "ext-mbstring": "*",
    "illuminate/collections": "^12.0",
    "illuminate/conditionable": "^12.0",
    "illuminate/contracts": "^12.0",
    "illuminate/macroable": "^12.0",
    "illuminate/reflection": "^12.0",
    "nesbot/carbon": "^3.8.4",
    "php": "^8.2",
    "symfony/polyfill-php83": "^1.33",
    "symfony/polyfill-php85": "^1.33",
    "voku/portable-ascii": "^2.0.2"
    },
    "conflict": {
    "tightenco/collect": "<5.5.33"
    },
    "replace": {
    "spatie/once": "*"
    },
    "suggest": {
    "illuminate/filesystem": "Required to use the Composer class (^12.0).",
    "laravel/serializable-closure": "Required to use the once function (^1.3|^2.0).",
    "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.7).",
    "league/uri": "Required to use the Uri class (^7.5.1).",
    "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
    "symfony/process": "Required to use the Composer class (^7.2).",
    "symfony/uid": "Required to use Str::ulid() (^7.2).",
    "symfony/var-dumper": "Required to use the dd function (^7.2).",
    "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.6.1)."
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "files": [
    "functions.php",
    "helpers.php"
    ],
    "psr-4": {
    "Illuminate\\Support\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Support package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2026-02-23T15:44:06+00:00"
    },
    {
    "name": "illuminate/testing",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/testing.git",
    "reference": "3e73c65de8c15b5397e8a3ed8926c9c6bb01ac4e"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/testing/zipball/3e73c65de8c15b5397e8a3ed8926c9c6bb01ac4e",
    "reference": "3e73c65de8c15b5397e8a3ed8926c9c6bb01ac4e",
    "shasum": ""
    },
    "require": {
    "ext-mbstring": "*",
    "illuminate/collections": "^12.0",
    "illuminate/contracts": "^12.0",
    "illuminate/macroable": "^12.0",
    "illuminate/support": "^12.0",
    "php": "^8.2",
    "symfony/polyfill-php83": "^1.33"
    },
    "suggest": {
    "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
    "illuminate/console": "Required to assert console commands (^12.0).",
    "illuminate/database": "Required to assert databases (^12.0).",
    "illuminate/http": "Required to assert responses (^12.0).",
    "mockery/mockery": "Required to use mocking (^1.6).",
    "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1)."
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Illuminate\\Testing\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate Testing package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2026-02-21T13:44:59+00:00"
    },
    {
    "name": "illuminate/view",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/illuminate/view.git",
    "reference": "77a892be53eebb13c9abda0711b580224fcd2b5c"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/illuminate/view/zipball/77a892be53eebb13c9abda0711b580224fcd2b5c",
    "reference": "77a892be53eebb13c9abda0711b580224fcd2b5c",
    "shasum": ""
    },
    "require": {
    "ext-tokenizer": "*",
    "illuminate/collections": "^12.0",
    "illuminate/container": "^12.0",
    "illuminate/contracts": "^12.0",
    "illuminate/events": "^12.0",
    "illuminate/filesystem": "^12.0",
    "illuminate/macroable": "^12.0",
    "illuminate/support": "^12.0",
    "php": "^8.2"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Illuminate\\View\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Taylor Otwell",
    "email": "taylor@laravel.com"
    }
    ],
    "description": "The Illuminate View package.",
    "homepage": "https://laravel.com",
    "support": {
    "issues": "https://github.com/laravel/framework/issues",
    "source": "https://github.com/laravel/framework"
    },
    "time": "2026-02-23T15:43:34+00:00"
    },
    {
    "name": "jolicode/jolinotif",
    "version": "v2.7.3",
    "source": {
    "type": "git",
    "url": "https://github.com/jolicode/JoliNotif.git",
    "reference": "3c3e1c410b107dd2603b732508fd95830f0e0196"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/jolicode/JoliNotif/zipball/3c3e1c410b107dd2603b732508fd95830f0e0196",
    "reference": "3c3e1c410b107dd2603b732508fd95830f0e0196",
    "shasum": ""
    },
    "require": {
    "jolicode/php-os-helper": "^0.1.0",
    "php": ">=8.1",
    "psr/log": "^1.0 || ^2.0 || ^3.0",
    "symfony/deprecation-contracts": "^3",
    "symfony/process": "^5.4 || ^6.0 || ^7.0"
    },
    "require-dev": {
    "symfony/finder": "^5.4 || ^6.0 || ^7.0",
    "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0"
    },
    "suggest": {
    "ext-ffi": "Needed to send notifications via libnotify on Linux"
    },
    "bin": [
    "jolinotif"
    ],
    "type": "library",
    "autoload": {
    "psr-4": {
    "Joli\\JoliNotif\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Loïck Piera",
    "email": "pyrech@gmail.com"
    }
    ],
    "description": "Send desktop notifications on Windows, Linux, MacOS.",
    "keywords": [
    "MAC",
    "growl",
    "linux",
    "notification",
    "windows"
    ],
    "support": {
    "issues": "https://github.com/jolicode/JoliNotif/issues",
    "source": "https://github.com/jolicode/JoliNotif/tree/v2.7.3"
    },
    "funding": [
    {
    "url": "https://tidelift.com/funding/github/packagist/jolicode/jolinotif",
    "type": "tidelift"
    }
    ],
    "time": "2024-09-30T13:34:54+00:00"
    },
    {
    "name": "jolicode/php-os-helper",
    "version": "v0.1.0",
    "source": {
    "type": "git",
    "url": "https://github.com/jolicode/php-os-helper.git",
    "reference": "1622ad8bbcab98e62b5c041397e8519f10d90e29"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/jolicode/php-os-helper/zipball/1622ad8bbcab98e62b5c041397e8519f10d90e29",
    "reference": "1622ad8bbcab98e62b5c041397e8519f10d90e29",
    "shasum": ""
    },
    "require": {
    "php": ">=8.1"
    },
    "require-dev": {
    "symfony/phpunit-bridge": "^6.3.1"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "JoliCode\\PhpOsHelper\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Loïck Piera",
    "email": "pyrech@gmail.com"
    }
    ],
    "description": "Helpers to detect the OS of the machine where PHP is running.",
    "keywords": [
    "linux",
    "os",
    "osx",
    "php",
    "windows"
    ],
    "support": {
    "issues": "https://github.com/jolicode/php-os-helper/issues",
    "source": "https://github.com/jolicode/php-os-helper/tree/v0.1.0"
    },
    "time": "2023-12-03T12:46:03+00:00"
    },
    {
    "name": "laravel-zero/foundation",
    "version": "v12.53.0",
    "source": {
    "type": "git",
    "url": "https://github.com/laravel-zero/foundation.git",
    "reference": "ed89d536bf90645219e3e46a1f00b0d8582644f1"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/laravel-zero/foundation/zipball/ed89d536bf90645219e3e46a1f00b0d8582644f1",
    "reference": "ed89d536bf90645219e3e46a1f00b0d8582644f1",
    "shasum": ""
    },
    "require": {
    "php": "^8.2"
    },
    "require-dev": {
    "laravel/framework": "^12.40"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "12.x-dev"
    }
    },
    "autoload": {
    "files": [
    "src/Illuminate/Foundation/helpers.php"
    ],
    "psr-4": {
    "Illuminate\\": "src/Illuminate/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "description": "This is a mirror from illuminate/foundation.",
    "keywords": [
    "framework",
    "laravel"
    ],
    "support": {
    "source": "https://github.com/laravel-zero/foundation/tree/v12.53.0"
    },
    "funding": [
    {
    "url": "https://www.paypal.com/paypalme/enunomaduro",
    "type": "custom"
    },
    {
    "url": "https://github.com/nunomaduro",
    "type": "github"
    }
    ],
    "time": "2026-03-03T09:56:28+00:00"
    },
    {
    "name": "laravel-zero/framework",
    "version": "v12.0.5",
    "source": {
    "type": "git",
    "url": "https://github.com/laravel-zero/framework.git",
    "reference": "206d53048c1b58b1577ab491390d704768532a01"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/laravel-zero/framework/zipball/206d53048c1b58b1577ab491390d704768532a01",
    "reference": "206d53048c1b58b1577ab491390d704768532a01",
    "shasum": ""
    },
    "require": {
    "dragonmantank/cron-expression": "^3.6",
    "ext-json": "*",
    "guzzlehttp/guzzle": "^7.10.0",
    "illuminate/cache": "^12.40.0",
    "illuminate/collections": "^12.40.0",
    "illuminate/config": "^12.40.0",
    "illuminate/console": "^12.40.0",
    "illuminate/container": "^12.40.0",
    "illuminate/contracts": "^12.40.0",
    "illuminate/events": "^12.40.0",
    "illuminate/filesystem": "^12.40.0",
    "illuminate/process": "^12.40.0",
    "illuminate/support": "^12.40.0",
    "illuminate/testing": "^12.40.0",
    "laravel-zero/foundation": "^12.40.0",
    "laravel/prompts": "^0.3.8",
    "league/flysystem": "^3.30.2",
    "nunomaduro/collision": "^8.8.3",
    "nunomaduro/laravel-console-summary": "^1.13.0",
    "nunomaduro/laravel-console-task": "^1.10",
    "nunomaduro/laravel-desktop-notifier": "^2.9.0",
    "nunomaduro/termwind": "^2.3.3",
    "php": "^8.2",
    "psr/log": "^3.0.2",
    "ramsey/uuid": "^4.9.1",
    "symfony/console": "^7.3.6",
    "symfony/error-handler": "^7.3.6",
    "symfony/event-dispatcher": "^7.3.3",
    "symfony/finder": "^7.3.5",
    "symfony/process": "^7.3.4",
    "symfony/var-dumper": "^7.3.5",
    "vlucas/phpdotenv": "^5.6.2"
    },
    "require-dev": {
    "illuminate/bus": "^12.40.0",
    "illuminate/database": "^12.40.0",
    "illuminate/http": "^12.40.0",
    "illuminate/log": "^12.40.0",
    "illuminate/queue": "^12.40.0",
    "illuminate/redis": "^12.40.0",
    "illuminate/view": "^12.40.0",
    "laravel-zero/phar-updater": "^1.4.2",
    "laravel/pint": "^1.25.1",
    "nunomaduro/laravel-console-dusk": "^1.14",
    "nunomaduro/laravel-console-menu": "^3.6",
    "pestphp/pest": "^3.8.4|^4.1.5",
    "phpstan/phpstan": "^2.1.32"
    },
    "suggest": {
    "ext-pcntl": "Required to ensure that data is cleared when cancelling the build process."
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "12.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "LaravelZero\\Framework\\": "src"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nuno Maduro",
    "email": "enunomaduro@gmail.com"
    },
    {
    "name": "Owen Voke",
    "email": "development@voke.dev"
    }
    ],
    "description": "The Laravel Zero Framework.",
    "homepage": "https://laravel-zero.com",
    "keywords": [
    "Laravel Zero",
    "cli",
    "console",
    "framework",
    "laravel"
    ],
    "support": {
    "issues": "https://github.com/laravel-zero/laravel-zero/issues",
    "source": "https://github.com/laravel-zero/laravel-zero"
    },
    "funding": [
    {
    "url": "https://www.paypal.com/paypalme/enunomaduro",
    "type": "custom"
    },
    {
    "url": "https://github.com/nunomaduro",
    "type": "github"
    }
    ],
    "time": "2026-01-24T09:18:21+00:00"
    },
    {
    "name": "laravel/prompts",
    "version": "v0.3.13",
    "source": {
    "type": "git",
    "url": "https://github.com/laravel/prompts.git",
    "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/laravel/prompts/zipball/ed8c466571b37e977532fb2fd3c272c784d7050d",
    "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d",
    "shasum": ""
    },
    "require": {
    "composer-runtime-api": "^2.2",
    "ext-mbstring": "*",
    "php": "^8.1",
    "symfony/console": "^6.2|^7.0|^8.0"
    },
    "conflict": {
    "illuminate/console": ">=10.17.0 <10.25.0",
    "laravel/framework": ">=10.17.0 <10.25.0"
    },
    "require-dev": {
    "illuminate/collections": "^10.0|^11.0|^12.0|^13.0",
    "mockery/mockery": "^1.5",
    "pestphp/pest": "^2.3|^3.4|^4.0",
    "phpstan/phpstan": "^1.12.28",
    "phpstan/phpstan-mockery": "^1.1.3"
    },
    "suggest": {
    "ext-pcntl": "Required for the spinner to be animated."
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "0.3.x-dev"
    }
    },
    "autoload": {
    "files": [
    "src/helpers.php"
    ],
    "psr-4": {
    "Laravel\\Prompts\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "description": "Add beautiful and user-friendly forms to your command-line applications.",
    "support": {
    "issues": "https://github.com/laravel/prompts/issues",
    "source": "https://github.com/laravel/prompts/tree/v0.3.13"
    },
    "time": "2026-02-06T12:17:10+00:00"
    },
    {
    "name": "league/flysystem",
    "version": "3.32.0",
    "source": {
    "type": "git",
    "url": "https://github.com/thephpleague/flysystem.git",
    "reference": "254b1595b16b22dbddaaef9ed6ca9fdac4956725"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/254b1595b16b22dbddaaef9ed6ca9fdac4956725",
    "reference": "254b1595b16b22dbddaaef9ed6ca9fdac4956725",
    "shasum": ""
    },
    "require": {
    "league/flysystem-local": "^3.0.0",
    "league/mime-type-detection": "^1.0.0",
    "php": "^8.0.2"
    },
    "conflict": {
    "async-aws/core": "<1.19.0",
    "async-aws/s3": "<1.14.0",
    "aws/aws-sdk-php": "3.209.31 || 3.210.0",
    "guzzlehttp/guzzle": "<7.0",
    "guzzlehttp/ringphp": "<1.1.1",
    "phpseclib/phpseclib": "3.0.15",
    "symfony/http-client": "<5.2"
    },
    "require-dev": {
    "async-aws/s3": "^1.5 || ^2.0",
    "async-aws/simple-s3": "^1.1 || ^2.0",
    "aws/aws-sdk-php": "^3.295.10",
    "composer/semver": "^3.0",
    "ext-fileinfo": "*",
    "ext-ftp": "*",
    "ext-mongodb": "^1.3|^2",
    "ext-zip": "*",
    "friendsofphp/php-cs-fixer": "^3.5",
    "google/cloud-storage": "^1.23",
    "guzzlehttp/psr7": "^2.6",
    "microsoft/azure-storage-blob": "^1.1",
    "mongodb/mongodb": "^1.2|^2",
    "phpseclib/phpseclib": "^3.0.36",
    "phpstan/phpstan": "^1.10",
    "phpunit/phpunit": "^9.5.11|^10.0",
    "sabre/dav": "^4.6.0"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "League\\Flysystem\\": "src"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Frank de Jonge",
    "email": "info@frankdejonge.nl"
    }
    ],
    "description": "File storage abstraction for PHP",
    "keywords": [
    "WebDAV",
    "aws",
    "cloud",
    "file",
    "files",
    "filesystem",
    "filesystems",
    "ftp",
    "s3",
    "sftp",
    "storage"
    ],
    "support": {
    "issues": "https://github.com/thephpleague/flysystem/issues",
    "source": "https://github.com/thephpleague/flysystem/tree/3.32.0"
    },
    "time": "2026-02-25T17:01:41+00:00"
    },
    {
    "name": "league/flysystem-local",
    "version": "3.31.0",
    "source": {
    "type": "git",
    "url": "https://github.com/thephpleague/flysystem-local.git",
    "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/2f669db18a4c20c755c2bb7d3a7b0b2340488079",
    "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079",
    "shasum": ""
    },
    "require": {
    "ext-fileinfo": "*",
    "league/flysystem": "^3.0.0",
    "league/mime-type-detection": "^1.0.0",
    "php": "^8.0.2"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "League\\Flysystem\\Local\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Frank de Jonge",
    "email": "info@frankdejonge.nl"
    }
    ],
    "description": "Local filesystem adapter for Flysystem.",
    "keywords": [
    "Flysystem",
    "file",
    "files",
    "filesystem",
    "local"
    ],
    "support": {
    "source": "https://github.com/thephpleague/flysystem-local/tree/3.31.0"
    },
    "time": "2026-01-23T15:30:45+00:00"
    },
    {
    "name": "league/mime-type-detection",
    "version": "1.16.0",
    "source": {
    "type": "git",
    "url": "https://github.com/thephpleague/mime-type-detection.git",
    "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
    "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
    "shasum": ""
    },
    "require": {
    "ext-fileinfo": "*",
    "php": "^7.4 || ^8.0"
    },
    "require-dev": {
    "friendsofphp/php-cs-fixer": "^3.2",
    "phpstan/phpstan": "^0.12.68",
    "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "League\\MimeTypeDetection\\": "src"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Frank de Jonge",
    "email": "info@frankdejonge.nl"
    }
    ],
    "description": "Mime-type detection for Flysystem",
    "support": {
    "issues": "https://github.com/thephpleague/mime-type-detection/issues",
    "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
    },
    "funding": [
    {
    "url": "https://github.com/frankdejonge",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
    "type": "tidelift"
    }
    ],
    "time": "2024-09-21T08:32:55+00:00"
    },
    {
    "name": "nesbot/carbon",
    "version": "3.11.1",
    "source": {
    "type": "git",
    "url": "https://github.com/CarbonPHP/carbon.git",
    "reference": "f438fcc98f92babee98381d399c65336f3a3827f"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/f438fcc98f92babee98381d399c65336f3a3827f",
    "reference": "f438fcc98f92babee98381d399c65336f3a3827f",
    "shasum": ""
    },
    "require": {
    "carbonphp/carbon-doctrine-types": "<100.0",
    "ext-json": "*",
    "php": "^8.1",
    "psr/clock": "^1.0",
    "symfony/clock": "^6.3.12 || ^7.0 || ^8.0",
    "symfony/polyfill-mbstring": "^1.0",
    "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0 || ^8.0"
    },
    "provide": {
    "psr/clock-implementation": "1.0"
    },
    "require-dev": {
    "doctrine/dbal": "^3.6.3 || ^4.0",
    "doctrine/orm": "^2.15.2 || ^3.0",
    "friendsofphp/php-cs-fixer": "^v3.87.1",
    "kylekatarnls/multi-tester": "^2.5.3",
    "phpmd/phpmd": "^2.15.0",
    "phpstan/extension-installer": "^1.4.3",
    "phpstan/phpstan": "^2.1.22",
    "phpunit/phpunit": "^10.5.53",
    "squizlabs/php_codesniffer": "^3.13.4 || ^4.0.0"
    },
    "bin": [
    "bin/carbon"
    ],
    "type": "library",
    "extra": {
    "laravel": {
    "providers": [
    "Carbon\\Laravel\\ServiceProvider"
    ]
    },
    "phpstan": {
    "includes": [
    "extension.neon"
    ]
    },
    "branch-alias": {
    "dev-2.x": "2.x-dev",
    "dev-master": "3.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Carbon\\": "src/Carbon/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Brian Nesbitt",
    "email": "brian@nesbot.com",
    "homepage": "https://markido.com"
    },
    {
    "name": "kylekatarnls",
    "homepage": "https://github.com/kylekatarnls"
    }
    ],
    "description": "An API extension for DateTime that supports 281 different languages.",
    "homepage": "https://carbonphp.github.io/carbon/",
    "keywords": [
    "date",
    "datetime",
    "time"
    ],
    "support": {
    "docs": "https://carbonphp.github.io/carbon/guide/getting-started/introduction.html",
    "issues": "https://github.com/CarbonPHP/carbon/issues",
    "source": "https://github.com/CarbonPHP/carbon"
    },
    "funding": [
    {
    "url": "https://github.com/sponsors/kylekatarnls",
    "type": "github"
    },
    {
    "url": "https://opencollective.com/Carbon#sponsor",
    "type": "opencollective"
    },
    {
    "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
    "type": "tidelift"
    }
    ],
    "time": "2026-01-29T09:26:29+00:00"
    },
    {
    "name": "nunomaduro/collision",
    "version": "v8.9.1",
    "source": {
    "type": "git",
    "url": "https://github.com/nunomaduro/collision.git",
    "reference": "a1ed3fa530fd60bc515f9303e8520fcb7d4bd935"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/nunomaduro/collision/zipball/a1ed3fa530fd60bc515f9303e8520fcb7d4bd935",
    "reference": "a1ed3fa530fd60bc515f9303e8520fcb7d4bd935",
    "shasum": ""
    },
    "require": {
    "filp/whoops": "^2.18.4",
    "nunomaduro/termwind": "^2.4.0",
    "php": "^8.2.0",
    "symfony/console": "^7.4.4 || ^8.0.4"
    },
    "conflict": {
    "laravel/framework": "<11.48.0 || >=14.0.0",
    "phpunit/phpunit": "<11.5.50 || >=14.0.0"
    },
    "require-dev": {
    "brianium/paratest": "^7.8.5",
    "larastan/larastan": "^3.9.2",
    "laravel/framework": "^11.48.0 || ^12.52.0",
    "laravel/pint": "^1.27.1",
    "orchestra/testbench-core": "^9.12.0 || ^10.9.0",
    "pestphp/pest": "^3.8.5 || ^4.4.1 || ^5.0.0",
    "sebastian/environment": "^7.2.1 || ^8.0.3 || ^9.0.0"
    },
    "type": "library",
    "extra": {
    "laravel": {
    "providers": [
    "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
    ]
    },
    "branch-alias": {
    "dev-8.x": "8.x-dev"
    }
    },
    "autoload": {
    "files": [
    "./src/Adapters/Phpunit/Autoload.php"
    ],
    "psr-4": {
    "NunoMaduro\\Collision\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nuno Maduro",
    "email": "enunomaduro@gmail.com"
    }
    ],
    "description": "Cli error handling for console/command-line PHP applications.",
    "keywords": [
    "artisan",
    "cli",
    "command-line",
    "console",
    "dev",
    "error",
    "handling",
    "laravel",
    "laravel-zero",
    "php",
    "symfony"
    ],
    "support": {
    "issues": "https://github.com/nunomaduro/collision/issues",
    "source": "https://github.com/nunomaduro/collision"
    },
    "funding": [
    {
    "url": "https://www.paypal.com/paypalme/enunomaduro",
    "type": "custom"
    },
    {
    "url": "https://github.com/nunomaduro",
    "type": "github"
    },
    {
    "url": "https://www.patreon.com/nunomaduro",
    "type": "patreon"
    }
    ],
    "time": "2026-02-17T17:33:08+00:00"
    },
    {
    "name": "nunomaduro/laravel-console-summary",
    "version": "v1.14.0",
    "source": {
    "type": "git",
    "url": "https://github.com/nunomaduro/laravel-console-summary.git",
    "reference": "21c4c5c432bd0db55d747647a7b3a75be71bf67b"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/nunomaduro/laravel-console-summary/zipball/21c4c5c432bd0db55d747647a7b3a75be71bf67b",
    "reference": "21c4c5c432bd0db55d747647a7b3a75be71bf67b",
    "shasum": ""
    },
    "require": {
    "illuminate/console": "^11.4|^12.0|^13.0",
    "illuminate/support": "^11.4|^12.0|^13.0",
    "php": "^8.2"
    },
    "require-dev": {
    "laravel/pint": "^1.21"
    },
    "type": "library",
    "extra": {
    "laravel": {
    "providers": [
    "NunoMaduro\\LaravelConsoleSummary\\LaravelConsoleSummaryServiceProvider"
    ]
    }
    },
    "autoload": {
    "psr-4": {
    "NunoMaduro\\LaravelConsoleSummary\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nuno Maduro",
    "email": "enunomaduro@gmail.com"
    }
    ],
    "description": "A Beautiful Laravel Console Summary for your Laravel/Laravel Zero commands.",
    "keywords": [
    "artisan",
    "cli",
    "command-line",
    "console",
    "laravel",
    "laravel-zero",
    "php",
    "symfony"
    ],
    "support": {
    "issues": "https://github.com/nunomaduro/laravel-console-summary/issues",
    "source": "https://github.com/nunomaduro/laravel-console-summary"
    },
    "time": "2026-02-23T09:40:19+00:00"
    },
    {
    "name": "nunomaduro/laravel-console-task",
    "version": "v1.11.0",
    "source": {
    "type": "git",
    "url": "https://github.com/nunomaduro/laravel-console-task.git",
    "reference": "bb90369a55908d14055de33ee4bf70ba638f4ee1"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/nunomaduro/laravel-console-task/zipball/bb90369a55908d14055de33ee4bf70ba638f4ee1",
    "reference": "bb90369a55908d14055de33ee4bf70ba638f4ee1",
    "shasum": ""
    },
    "require": {
    "illuminate/console": "^11.0|^12.0|^13.0",
    "illuminate/support": "^11.0|^12.0|^13.0",
    "php": "^8.2"
    },
    "require-dev": {
    "pestphp/pest": "^3.7|^4.4"
    },
    "type": "library",
    "extra": {
    "laravel": {
    "providers": [
    "NunoMaduro\\LaravelConsoleTask\\LaravelConsoleTaskServiceProvider"
    ]
    }
    },
    "autoload": {
    "psr-4": {
    "NunoMaduro\\LaravelConsoleTask\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nuno Maduro",
    "email": "enunomaduro@gmail.com"
    }
    ],
    "description": "Laravel Console Task is a output method for your Laravel/Laravel Zero commands.",
    "keywords": [
    "artisan",
    "cli",
    "command-line",
    "console",
    "laravel",
    "laravel-zero",
    "php",
    "symfony"
    ],
    "support": {
    "issues": "https://github.com/nunomaduro/laravel-console-task/issues",
    "source": "https://github.com/nunomaduro/laravel-console-task"
    },
    "time": "2026-02-24T09:37:53+00:00"
    },
    {
    "name": "nunomaduro/laravel-desktop-notifier",
    "version": "v2.10.0",
    "source": {
    "type": "git",
    "url": "https://github.com/nunomaduro/laravel-desktop-notifier.git",
    "reference": "0454df17906c4d29ed87f563b121e3224c9655b1"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/nunomaduro/laravel-desktop-notifier/zipball/0454df17906c4d29ed87f563b121e3224c9655b1",
    "reference": "0454df17906c4d29ed87f563b121e3224c9655b1",
    "shasum": ""
    },
    "require": {
    "illuminate/console": "^10.0|^11.0|^12.0|^13.0",
    "illuminate/support": "^10.0|^11.0|^12.0|^13.0",
    "jolicode/jolinotif": "^2.5",
    "php": "^8.2"
    },
    "require-dev": {
    "graham-campbell/testbench": "^5.7|^6.2",
    "pestphp/pest": "^3.7|^4.4"
    },
    "type": "library",
    "extra": {
    "laravel": {
    "aliases": {
    "Notifier": "NunoMaduro\\LaravelDesktopNotifier\\Facaces\\Notifier"
    },
    "providers": [
    "NunoMaduro\\LaravelDesktopNotifier\\LaravelDesktopNotifierServiceProvider"
    ]
    }
    },
    "autoload": {
    "psr-4": {
    "NunoMaduro\\LaravelDesktopNotifier\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nuno Maduro",
    "email": "enunomaduro@gmail.com"
    }
    ],
    "description": "Send notifications to your desktop from your Laravel commands. An JoliNotif wrapper for Laravel 5.",
    "keywords": [
    "JoliNotif",
    "Nuno Maduro",
    "NunoMaduro",
    "artisan",
    "console",
    "framework",
    "laravel",
    "notification",
    "notifier",
    "php",
    "wrapper"
    ],
    "support": {
    "issues": "https://github.com/nunomaduro/laravel-desktop-notifier/issues",
    "source": "https://github.com/nunomaduro/laravel-desktop-notifier/tree/v2.10.0"
    },
    "time": "2026-02-24T09:42:50+00:00"
    },
    {
    "name": "nunomaduro/termwind",
    "version": "v2.4.0",
    "source": {
    "type": "git",
    "url": "https://github.com/nunomaduro/termwind.git",
    "reference": "712a31b768f5daea284c2169a7d227031001b9a8"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/712a31b768f5daea284c2169a7d227031001b9a8",
    "reference": "712a31b768f5daea284c2169a7d227031001b9a8",
    "shasum": ""
    },
    "require": {
    "ext-mbstring": "*",
    "php": "^8.2",
    "symfony/console": "^7.4.4 || ^8.0.4"
    },
    "require-dev": {
    "illuminate/console": "^11.47.0",
    "laravel/pint": "^1.27.1",
    "mockery/mockery": "^1.6.12",
    "pestphp/pest": "^2.36.0 || ^3.8.4 || ^4.3.2",
    "phpstan/phpstan": "^1.12.32",
    "phpstan/phpstan-strict-rules": "^1.6.2",
    "symfony/var-dumper": "^7.3.5 || ^8.0.4",
    "thecodingmachine/phpstan-strict-rules": "^1.0.0"
    },
    "type": "library",
    "extra": {
    "laravel": {
    "providers": [
    "Termwind\\Laravel\\TermwindServiceProvider"
    ]
    },
    "branch-alias": {
    "dev-2.x": "2.x-dev"
    }
    },
    "autoload": {
    "files": [
    "src/Functions.php"
    ],
    "psr-4": {
    "Termwind\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nuno Maduro",
    "email": "enunomaduro@gmail.com"
    }
    ],
    "description": "It's like Tailwind CSS, but for the console.",
    "keywords": [
    "cli",
    "console",
    "css",
    "package",
    "php",
    "style"
    ],
    "support": {
    "issues": "https://github.com/nunomaduro/termwind/issues",
    "source": "https://github.com/nunomaduro/termwind/tree/v2.4.0"
    },
    "funding": [
    {
    "url": "https://www.paypal.com/paypalme/enunomaduro",
    "type": "custom"
    },
    {
    "url": "https://github.com/nunomaduro",
    "type": "github"
    },
    {
    "url": "https://github.com/xiCO2k",
    "type": "github"
    }
    ],
    "time": "2026-02-16T23:10:27+00:00"
    },
    {
    "name": "phpoption/phpoption",
    "version": "1.9.5",
    "source": {
    "type": "git",
    "url": "https://github.com/schmittjoh/php-option.git",
    "reference": "75365b91986c2405cf5e1e012c5595cd487a98be"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be",
    "reference": "75365b91986c2405cf5e1e012c5595cd487a98be",
    "shasum": ""
    },
    "require": {
    "php": "^7.2.5 || ^8.0"
    },
    "require-dev": {
    "bamarni/composer-bin-plugin": "^1.8.2",
    "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
    },
    "type": "library",
    "extra": {
    "bamarni-bin": {
    "bin-links": true,
    "forward-command": false
    },
    "branch-alias": {
    "dev-master": "1.9-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "PhpOption\\": "src/PhpOption/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "Apache-2.0"
    ],
    "authors": [
    {
    "name": "Johannes M. Schmitt",
    "email": "schmittjoh@gmail.com",
    "homepage": "https://github.com/schmittjoh"
    },
    {
    "name": "Graham Campbell",
    "email": "hello@gjcampbell.co.uk",
    "homepage": "https://github.com/GrahamCampbell"
    }
    ],
    "description": "Option Type for PHP",
    "keywords": [
    "language",
    "option",
    "php",
    "type"
    ],
    "support": {
    "issues": "https://github.com/schmittjoh/php-option/issues",
    "source": "https://github.com/schmittjoh/php-option/tree/1.9.5"
    },
    "funding": [
    {
    "url": "https://github.com/GrahamCampbell",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
    "type": "tidelift"
    }
    ],
    "time": "2025-12-27T19:41:33+00:00"
    },
    {
    "name": "psr/clock",
    "version": "1.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/php-fig/clock.git",
    "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
    "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
    "shasum": ""
    },
    "require": {
    "php": "^7.0 || ^8.0"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "Psr\\Clock\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "PHP-FIG",
    "homepage": "https://www.php-fig.org/"
    }
    ],
    "description": "Common interface for reading the clock.",
    "homepage": "https://github.com/php-fig/clock",
    "keywords": [
    "clock",
    "now",
    "psr",
    "psr-20",
    "time"
    ],
    "support": {
    "issues": "https://github.com/php-fig/clock/issues",
    "source": "https://github.com/php-fig/clock/tree/1.0.0"
    },
    "time": "2022-11-25T14:36:26+00:00"
    },
    {
    "name": "psr/container",
    "version": "2.0.2",
    "source": {
    "type": "git",
    "url": "https://github.com/php-fig/container.git",
    "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
    "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
    "shasum": ""
    },
    "require": {
    "php": ">=7.4.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "2.0.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Psr\\Container\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "PHP-FIG",
    "homepage": "https://www.php-fig.org/"
    }
    ],
    "description": "Common Container Interface (PHP FIG PSR-11)",
    "homepage": "https://github.com/php-fig/container",
    "keywords": [
    "PSR-11",
    "container",
    "container-interface",
    "container-interop",
    "psr"
    ],
    "support": {
    "issues": "https://github.com/php-fig/container/issues",
    "source": "https://github.com/php-fig/container/tree/2.0.2"
    },
    "time": "2021-11-05T16:47:00+00:00"
    },
    {
    "name": "psr/event-dispatcher",
    "version": "1.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/php-fig/event-dispatcher.git",
    "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
    "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
    "shasum": ""
    },
    "require": {
    "php": ">=7.2.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "1.0.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Psr\\EventDispatcher\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "PHP-FIG",
    "homepage": "http://www.php-fig.org/"
    }
    ],
    "description": "Standard interfaces for event handling.",
    "keywords": [
    "events",
    "psr",
    "psr-14"
    ],
    "support": {
    "issues": "https://github.com/php-fig/event-dispatcher/issues",
    "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
    },
    "time": "2019-01-08T18:20:26+00:00"
    },
    {
    "name": "psr/http-client",
    "version": "1.0.3",
    "source": {
    "type": "git",
    "url": "https://github.com/php-fig/http-client.git",
    "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
    "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
    "shasum": ""
    },
    "require": {
    "php": "^7.0 || ^8.0",
    "psr/http-message": "^1.0 || ^2.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "1.0.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Psr\\Http\\Client\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "PHP-FIG",
    "homepage": "https://www.php-fig.org/"
    }
    ],
    "description": "Common interface for HTTP clients",
    "homepage": "https://github.com/php-fig/http-client",
    "keywords": [
    "http",
    "http-client",
    "psr",
    "psr-18"
    ],
    "support": {
    "source": "https://github.com/php-fig/http-client"
    },
    "time": "2023-09-23T14:17:50+00:00"
    },
    {
    "name": "psr/http-factory",
    "version": "1.1.0",
    "source": {
    "type": "git",
    "url": "https://github.com/php-fig/http-factory.git",
    "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
    "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
    "shasum": ""
    },
    "require": {
    "php": ">=7.1",
    "psr/http-message": "^1.0 || ^2.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "1.0.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Psr\\Http\\Message\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "PHP-FIG",
    "homepage": "https://www.php-fig.org/"
    }
    ],
    "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
    "keywords": [
    "factory",
    "http",
    "message",
    "psr",
    "psr-17",
    "psr-7",
    "request",
    "response"
    ],
    "support": {
    "source": "https://github.com/php-fig/http-factory"
    },
    "time": "2024-04-15T12:06:14+00:00"
    },
    {
    "name": "psr/http-message",
    "version": "2.0",
    "source": {
    "type": "git",
    "url": "https://github.com/php-fig/http-message.git",
    "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
    "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
    "shasum": ""
    },
    "require": {
    "php": "^7.2 || ^8.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "2.0.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Psr\\Http\\Message\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "PHP-FIG",
    "homepage": "https://www.php-fig.org/"
    }
    ],
    "description": "Common interface for HTTP messages",
    "homepage": "https://github.com/php-fig/http-message",
    "keywords": [
    "http",
    "http-message",
    "psr",
    "psr-7",
    "request",
    "response"
    ],
    "support": {
    "source": "https://github.com/php-fig/http-message/tree/2.0"
    },
    "time": "2023-04-04T09:54:51+00:00"
    },
    {
    "name": "psr/log",
    "version": "3.0.2",
    "source": {
    "type": "git",
    "url": "https://github.com/php-fig/log.git",
    "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
    "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
    "shasum": ""
    },
    "require": {
    "php": ">=8.0.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "3.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Psr\\Log\\": "src"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "PHP-FIG",
    "homepage": "https://www.php-fig.org/"
    }
    ],
    "description": "Common interface for logging libraries",
    "homepage": "https://github.com/php-fig/log",
    "keywords": [
    "log",
    "psr",
    "psr-3"
    ],
    "support": {
    "source": "https://github.com/php-fig/log/tree/3.0.2"
    },
    "time": "2024-09-11T13:17:53+00:00"
    },
    {
    "name": "psr/simple-cache",
    "version": "3.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/php-fig/simple-cache.git",
    "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
    "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
    "shasum": ""
    },
    "require": {
    "php": ">=8.0.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "3.0.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Psr\\SimpleCache\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "PHP-FIG",
    "homepage": "https://www.php-fig.org/"
    }
    ],
    "description": "Common interfaces for simple caching",
    "keywords": [
    "cache",
    "caching",
    "psr",
    "psr-16",
    "simple-cache"
    ],
    "support": {
    "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
    },
    "time": "2021-10-29T13:26:27+00:00"
    },
    {
    "name": "ralouphie/getallheaders",
    "version": "3.0.3",
    "source": {
    "type": "git",
    "url": "https://github.com/ralouphie/getallheaders.git",
    "reference": "120b605dfeb996808c31b6477290a714d356e822"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
    "reference": "120b605dfeb996808c31b6477290a714d356e822",
    "shasum": ""
    },
    "require": {
    "php": ">=5.6"
    },
    "require-dev": {
    "php-coveralls/php-coveralls": "^2.1",
    "phpunit/phpunit": "^5 || ^6.5"
    },
    "type": "library",
    "autoload": {
    "files": [
    "src/getallheaders.php"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Ralph Khattar",
    "email": "ralph.khattar@gmail.com"
    }
    ],
    "description": "A polyfill for getallheaders.",
    "support": {
    "issues": "https://github.com/ralouphie/getallheaders/issues",
    "source": "https://github.com/ralouphie/getallheaders/tree/develop"
    },
    "time": "2019-03-08T08:55:37+00:00"
    },
    {
    "name": "ramsey/collection",
    "version": "2.1.1",
    "source": {
    "type": "git",
    "url": "https://github.com/ramsey/collection.git",
    "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
    "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
    "shasum": ""
    },
    "require": {
    "php": "^8.1"
    },
    "require-dev": {
    "captainhook/plugin-composer": "^5.3",
    "ergebnis/composer-normalize": "^2.45",
    "fakerphp/faker": "^1.24",
    "hamcrest/hamcrest-php": "^2.0",
    "jangregor/phpstan-prophecy": "^2.1",
    "mockery/mockery": "^1.6",
    "php-parallel-lint/php-console-highlighter": "^1.0",
    "php-parallel-lint/php-parallel-lint": "^1.4",
    "phpspec/prophecy-phpunit": "^2.3",
    "phpstan/extension-installer": "^1.4",
    "phpstan/phpstan": "^2.1",
    "phpstan/phpstan-mockery": "^2.0",
    "phpstan/phpstan-phpunit": "^2.0",
    "phpunit/phpunit": "^10.5",
    "ramsey/coding-standard": "^2.3",
    "ramsey/conventional-commits": "^1.6",
    "roave/security-advisories": "dev-latest"
    },
    "type": "library",
    "extra": {
    "captainhook": {
    "force-install": true
    },
    "ramsey/conventional-commits": {
    "configFile": "conventional-commits.json"
    }
    },
    "autoload": {
    "psr-4": {
    "Ramsey\\Collection\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Ben Ramsey",
    "email": "ben@benramsey.com",
    "homepage": "https://benramsey.com"
    }
    ],
    "description": "A PHP library for representing and manipulating collections.",
    "keywords": [
    "array",
    "collection",
    "hash",
    "map",
    "queue",
    "set"
    ],
    "support": {
    "issues": "https://github.com/ramsey/collection/issues",
    "source": "https://github.com/ramsey/collection/tree/2.1.1"
    },
    "time": "2025-03-22T05:38:12+00:00"
    },
    {
    "name": "ramsey/uuid",
    "version": "4.9.2",
    "source": {
    "type": "git",
    "url": "https://github.com/ramsey/uuid.git",
    "reference": "8429c78ca35a09f27565311b98101e2826affde0"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0",
    "reference": "8429c78ca35a09f27565311b98101e2826affde0",
    "shasum": ""
    },
    "require": {
    "brick/math": "^0.8.16 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14",
    "php": "^8.0",
    "ramsey/collection": "^1.2 || ^2.0"
    },
    "replace": {
    "rhumsaa/uuid": "self.version"
    },
    "require-dev": {
    "captainhook/captainhook": "^5.25",
    "captainhook/plugin-composer": "^5.3",
    "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
    "ergebnis/composer-normalize": "^2.47",
    "mockery/mockery": "^1.6",
    "paragonie/random-lib": "^2",
    "php-mock/php-mock": "^2.6",
    "php-mock/php-mock-mockery": "^1.5",
    "php-parallel-lint/php-parallel-lint": "^1.4.0",
    "phpbench/phpbench": "^1.2.14",
    "phpstan/extension-installer": "^1.4",
    "phpstan/phpstan": "^2.1",
    "phpstan/phpstan-mockery": "^2.0",
    "phpstan/phpstan-phpunit": "^2.0",
    "phpunit/phpunit": "^9.6",
    "slevomat/coding-standard": "^8.18",
    "squizlabs/php_codesniffer": "^3.13"
    },
    "suggest": {
    "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
    "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
    "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
    "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
    "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
    },
    "type": "library",
    "extra": {
    "captainhook": {
    "force-install": true
    }
    },
    "autoload": {
    "files": [
    "src/functions.php"
    ],
    "psr-4": {
    "Ramsey\\Uuid\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
    "keywords": [
    "guid",
    "identifier",
    "uuid"
    ],
    "support": {
    "issues": "https://github.com/ramsey/uuid/issues",
    "source": "https://github.com/ramsey/uuid/tree/4.9.2"
    },
    "time": "2025-12-14T04:43:48+00:00"
    },
    {
    "name": "symfony/clock",
    "version": "v8.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/clock.git",
    "reference": "832119f9b8dbc6c8e6f65f30c5969eca1e88764f"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/clock/zipball/832119f9b8dbc6c8e6f65f30c5969eca1e88764f",
    "reference": "832119f9b8dbc6c8e6f65f30c5969eca1e88764f",
    "shasum": ""
    },
    "require": {
    "php": ">=8.4",
    "psr/clock": "^1.0"
    },
    "provide": {
    "psr/clock-implementation": "1.0"
    },
    "type": "library",
    "autoload": {
    "files": [
    "Resources/now.php"
    ],
    "psr-4": {
    "Symfony\\Component\\Clock\\": ""
    },
    "exclude-from-classmap": [
    "/Tests/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Decouples applications from the system clock",
    "homepage": "https://symfony.com",
    "keywords": [
    "clock",
    "psr20",
    "time"
    ],
    "support": {
    "source": "https://github.com/symfony/clock/tree/v8.0.0"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2025-11-12T15:46:48+00:00"
    },
    {
    "name": "symfony/console",
    "version": "v7.4.6",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/console.git",
    "reference": "6d643a93b47398599124022eb24d97c153c12f27"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/console/zipball/6d643a93b47398599124022eb24d97c153c12f27",
    "reference": "6d643a93b47398599124022eb24d97c153c12f27",
    "shasum": ""
    },
    "require": {
    "php": ">=8.2",
    "symfony/deprecation-contracts": "^2.5|^3",
    "symfony/polyfill-mbstring": "~1.0",
    "symfony/service-contracts": "^2.5|^3",
    "symfony/string": "^7.2|^8.0"
    },
    "conflict": {
    "symfony/dependency-injection": "<6.4",
    "symfony/dotenv": "<6.4",
    "symfony/event-dispatcher": "<6.4",
    "symfony/lock": "<6.4",
    "symfony/process": "<6.4"
    },
    "provide": {
    "psr/log-implementation": "1.0|2.0|3.0"
    },
    "require-dev": {
    "psr/log": "^1|^2|^3",
    "symfony/config": "^6.4|^7.0|^8.0",
    "symfony/dependency-injection": "^6.4|^7.0|^8.0",
    "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
    "symfony/http-foundation": "^6.4|^7.0|^8.0",
    "symfony/http-kernel": "^6.4|^7.0|^8.0",
    "symfony/lock": "^6.4|^7.0|^8.0",
    "symfony/messenger": "^6.4|^7.0|^8.0",
    "symfony/process": "^6.4|^7.0|^8.0",
    "symfony/stopwatch": "^6.4|^7.0|^8.0",
    "symfony/var-dumper": "^6.4|^7.0|^8.0"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "Symfony\\Component\\Console\\": ""
    },
    "exclude-from-classmap": [
    "/Tests/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Fabien Potencier",
    "email": "fabien@symfony.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Eases the creation of beautiful and testable command line interfaces",
    "homepage": "https://symfony.com",
    "keywords": [
    "cli",
    "command-line",
    "console",
    "terminal"
    ],
    "support": {
    "source": "https://github.com/symfony/console/tree/v7.4.6"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2026-02-25T17:02:47+00:00"
    },
    {
    "name": "symfony/deprecation-contracts",
    "version": "v3.6.0",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/deprecation-contracts.git",
    "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
    "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
    "shasum": ""
    },
    "require": {
    "php": ">=8.1"
    },
    "type": "library",
    "extra": {
    "thanks": {
    "url": "https://github.com/symfony/contracts",
    "name": "symfony/contracts"
    },
    "branch-alias": {
    "dev-main": "3.6-dev"
    }
    },
    "autoload": {
    "files": [
    "function.php"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "A generic function and convention to trigger deprecation notices",
    "homepage": "https://symfony.com",
    "support": {
    "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2024-09-25T14:21:43+00:00"
    },
    {
    "name": "symfony/error-handler",
    "version": "v7.4.4",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/error-handler.git",
    "reference": "8da531f364ddfee53e36092a7eebbbd0b775f6b8"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/error-handler/zipball/8da531f364ddfee53e36092a7eebbbd0b775f6b8",
    "reference": "8da531f364ddfee53e36092a7eebbbd0b775f6b8",
    "shasum": ""
    },
    "require": {
    "php": ">=8.2",
    "psr/log": "^1|^2|^3",
    "symfony/polyfill-php85": "^1.32",
    "symfony/var-dumper": "^6.4|^7.0|^8.0"
    },
    "conflict": {
    "symfony/deprecation-contracts": "<2.5",
    "symfony/http-kernel": "<6.4"
    },
    "require-dev": {
    "symfony/console": "^6.4|^7.0|^8.0",
    "symfony/deprecation-contracts": "^2.5|^3",
    "symfony/http-kernel": "^6.4|^7.0|^8.0",
    "symfony/serializer": "^6.4|^7.0|^8.0",
    "symfony/webpack-encore-bundle": "^1.0|^2.0"
    },
    "bin": [
    "Resources/bin/patch-type-declarations"
    ],
    "type": "library",
    "autoload": {
    "psr-4": {
    "Symfony\\Component\\ErrorHandler\\": ""
    },
    "exclude-from-classmap": [
    "/Tests/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Fabien Potencier",
    "email": "fabien@symfony.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Provides tools to manage errors and ease debugging PHP code",
    "homepage": "https://symfony.com",
    "support": {
    "source": "https://github.com/symfony/error-handler/tree/v7.4.4"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2026-01-20T16:42:42+00:00"
    },
    {
    "name": "symfony/event-dispatcher",
    "version": "v7.4.4",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/event-dispatcher.git",
    "reference": "dc2c0eba1af673e736bb851d747d266108aea746"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/dc2c0eba1af673e736bb851d747d266108aea746",
    "reference": "dc2c0eba1af673e736bb851d747d266108aea746",
    "shasum": ""
    },
    "require": {
    "php": ">=8.2",
    "symfony/event-dispatcher-contracts": "^2.5|^3"
    },
    "conflict": {
    "symfony/dependency-injection": "<6.4",
    "symfony/service-contracts": "<2.5"
    },
    "provide": {
    "psr/event-dispatcher-implementation": "1.0",
    "symfony/event-dispatcher-implementation": "2.0|3.0"
    },
    "require-dev": {
    "psr/log": "^1|^2|^3",
    "symfony/config": "^6.4|^7.0|^8.0",
    "symfony/dependency-injection": "^6.4|^7.0|^8.0",
    "symfony/error-handler": "^6.4|^7.0|^8.0",
    "symfony/expression-language": "^6.4|^7.0|^8.0",
    "symfony/framework-bundle": "^6.4|^7.0|^8.0",
    "symfony/http-foundation": "^6.4|^7.0|^8.0",
    "symfony/service-contracts": "^2.5|^3",
    "symfony/stopwatch": "^6.4|^7.0|^8.0"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "Symfony\\Component\\EventDispatcher\\": ""
    },
    "exclude-from-classmap": [
    "/Tests/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Fabien Potencier",
    "email": "fabien@symfony.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
    "homepage": "https://symfony.com",
    "support": {
    "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.4"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2026-01-05T11:45:34+00:00"
    },
    {
    "name": "symfony/event-dispatcher-contracts",
    "version": "v3.6.0",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/event-dispatcher-contracts.git",
    "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
    "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
    "shasum": ""
    },
    "require": {
    "php": ">=8.1",
    "psr/event-dispatcher": "^1"
    },
    "type": "library",
    "extra": {
    "thanks": {
    "url": "https://github.com/symfony/contracts",
    "name": "symfony/contracts"
    },
    "branch-alias": {
    "dev-main": "3.6-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Symfony\\Contracts\\EventDispatcher\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Generic abstractions related to dispatching event",
    "homepage": "https://symfony.com",
    "keywords": [
    "abstractions",
    "contracts",
    "decoupling",
    "interfaces",
    "interoperability",
    "standards"
    ],
    "support": {
    "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2024-09-25T14:21:43+00:00"
    },
    {
    "name": "symfony/finder",
    "version": "v7.4.6",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/finder.git",
    "reference": "8655bf1076b7a3a346cb11413ffdabff50c7ffcf"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/finder/zipball/8655bf1076b7a3a346cb11413ffdabff50c7ffcf",
    "reference": "8655bf1076b7a3a346cb11413ffdabff50c7ffcf",
    "shasum": ""
    },
    "require": {
    "php": ">=8.2"
    },
    "require-dev": {
    "symfony/filesystem": "^6.4|^7.0|^8.0"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "Symfony\\Component\\Finder\\": ""
    },
    "exclude-from-classmap": [
    "/Tests/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Fabien Potencier",
    "email": "fabien@symfony.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Finds files and directories via an intuitive fluent interface",
    "homepage": "https://symfony.com",
    "support": {
    "source": "https://github.com/symfony/finder/tree/v7.4.6"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2026-01-29T09:40:50+00:00"
    },
    {
    "name": "symfony/polyfill-ctype",
    "version": "v1.33.0",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/polyfill-ctype.git",
    "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
    "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
    "shasum": ""
    },
    "require": {
    "php": ">=7.2"
    },
    "provide": {
    "ext-ctype": "*"
    },
    "suggest": {
    "ext-ctype": "For best performance"
    },
    "type": "library",
    "extra": {
    "thanks": {
    "url": "https://github.com/symfony/polyfill",
    "name": "symfony/polyfill"
    }
    },
    "autoload": {
    "files": [
    "bootstrap.php"
    ],
    "psr-4": {
    "Symfony\\Polyfill\\Ctype\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Gert de Pagter",
    "email": "BackEndTea@gmail.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Symfony polyfill for ctype functions",
    "homepage": "https://symfony.com",
    "keywords": [
    "compatibility",
    "ctype",
    "polyfill",
    "portable"
    ],
    "support": {
    "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2024-09-09T11:45:10+00:00"
    },
    {
    "name": "symfony/polyfill-intl-grapheme",
    "version": "v1.33.0",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
    "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
    "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
    "shasum": ""
    },
    "require": {
    "php": ">=7.2"
    },
    "suggest": {
    "ext-intl": "For best performance"
    },
    "type": "library",
    "extra": {
    "thanks": {
    "url": "https://github.com/symfony/polyfill",
    "name": "symfony/polyfill"
    }
    },
    "autoload": {
    "files": [
    "bootstrap.php"
    ],
    "psr-4": {
    "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Symfony polyfill for intl's grapheme_* functions",
    "homepage": "https://symfony.com",
    "keywords": [
    "compatibility",
    "grapheme",
    "intl",
    "polyfill",
    "portable",
    "shim"
    ],
    "support": {
    "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2025-06-27T09:58:17+00:00"
    },
    {
    "name": "symfony/polyfill-intl-normalizer",
    "version": "v1.33.0",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
    "reference": "3833d7255cc303546435cb650316bff708a1c75c"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
    "reference": "3833d7255cc303546435cb650316bff708a1c75c",
    "shasum": ""
    },
    "require": {
    "php": ">=7.2"
    },
    "suggest": {
    "ext-intl": "For best performance"
    },
    "type": "library",
    "extra": {
    "thanks": {
    "url": "https://github.com/symfony/polyfill",
    "name": "symfony/polyfill"
    }
    },
    "autoload": {
    "files": [
    "bootstrap.php"
    ],
    "psr-4": {
    "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
    },
    "classmap": [
    "Resources/stubs"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Symfony polyfill for intl's Normalizer class and related functions",
    "homepage": "https://symfony.com",
    "keywords": [
    "compatibility",
    "intl",
    "normalizer",
    "polyfill",
    "portable",
    "shim"
    ],
    "support": {
    "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2024-09-09T11:45:10+00:00"
    },
    {
    "name": "symfony/polyfill-mbstring",
    "version": "v1.33.0",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/polyfill-mbstring.git",
    "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
    "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
    "shasum": ""
    },
    "require": {
    "ext-iconv": "*",
    "php": ">=7.2"
    },
    "provide": {
    "ext-mbstring": "*"
    },
    "suggest": {
    "ext-mbstring": "For best performance"
    },
    "type": "library",
    "extra": {
    "thanks": {
    "url": "https://github.com/symfony/polyfill",
    "name": "symfony/polyfill"
    }
    },
    "autoload": {
    "files": [
    "bootstrap.php"
    ],
    "psr-4": {
    "Symfony\\Polyfill\\Mbstring\\": ""
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Symfony polyfill for the Mbstring extension",
    "homepage": "https://symfony.com",
    "keywords": [
    "compatibility",
    "mbstring",
    "polyfill",
    "portable",
    "shim"
    ],
    "support": {
    "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2024-12-23T08:48:59+00:00"
    },
    {
    "name": "symfony/polyfill-php80",
    "version": "v1.33.0",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/polyfill-php80.git",
    "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
    "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
    "shasum": ""
    },
    "require": {
    "php": ">=7.2"
    },
    "type": "library",
    "extra": {
    "thanks": {
    "url": "https://github.com/symfony/polyfill",
    "name": "symfony/polyfill"
    }
    },
    "autoload": {
    "files": [
    "bootstrap.php"
    ],
    "psr-4": {
    "Symfony\\Polyfill\\Php80\\": ""
    },
    "classmap": [
    "Resources/stubs"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Ion Bazan",
    "email": "ion.bazan@gmail.com"
    },
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
    "homepage": "https://symfony.com",
    "keywords": [
    "compatibility",
    "polyfill",
    "portable",
    "shim"
    ],
    "support": {
    "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2025-01-02T08:10:11+00:00"
    },
    {
    "name": "symfony/polyfill-php83",
    "version": "v1.33.0",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/polyfill-php83.git",
    "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
    "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
    "shasum": ""
    },
    "require": {
    "php": ">=7.2"
    },
    "type": "library",
    "extra": {
    "thanks": {
    "url": "https://github.com/symfony/polyfill",
    "name": "symfony/polyfill"
    }
    },
    "autoload": {
    "files": [
    "bootstrap.php"
    ],
    "psr-4": {
    "Symfony\\Polyfill\\Php83\\": ""
    },
    "classmap": [
    "Resources/stubs"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
    "homepage": "https://symfony.com",
    "keywords": [
    "compatibility",
    "polyfill",
    "portable",
    "shim"
    ],
    "support": {
    "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2025-07-08T02:45:35+00:00"
    },
    {
    "name": "symfony/polyfill-php84",
    "version": "v1.33.0",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/polyfill-php84.git",
    "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
    "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
    "shasum": ""
    },
    "require": {
    "php": ">=7.2"
    },
    "type": "library",
    "extra": {
    "thanks": {
    "url": "https://github.com/symfony/polyfill",
    "name": "symfony/polyfill"
    }
    },
    "autoload": {
    "files": [
    "bootstrap.php"
    ],
    "psr-4": {
    "Symfony\\Polyfill\\Php84\\": ""
    },
    "classmap": [
    "Resources/stubs"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
    "homepage": "https://symfony.com",
    "keywords": [
    "compatibility",
    "polyfill",
    "portable",
    "shim"
    ],
    "support": {
    "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2025-06-24T13:30:11+00:00"
    },
    {
    "name": "symfony/polyfill-php85",
    "version": "v1.33.0",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/polyfill-php85.git",
    "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
    "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
    "shasum": ""
    },
    "require": {
    "php": ">=7.2"
    },
    "type": "library",
    "extra": {
    "thanks": {
    "url": "https://github.com/symfony/polyfill",
    "name": "symfony/polyfill"
    }
    },
    "autoload": {
    "files": [
    "bootstrap.php"
    ],
    "psr-4": {
    "Symfony\\Polyfill\\Php85\\": ""
    },
    "classmap": [
    "Resources/stubs"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions",
    "homepage": "https://symfony.com",
    "keywords": [
    "compatibility",
    "polyfill",
    "portable",
    "shim"
    ],
    "support": {
    "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2025-06-23T16:12:55+00:00"
    },
    {
    "name": "symfony/process",
    "version": "v7.4.5",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/process.git",
    "reference": "608476f4604102976d687c483ac63a79ba18cc97"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/process/zipball/608476f4604102976d687c483ac63a79ba18cc97",
    "reference": "608476f4604102976d687c483ac63a79ba18cc97",
    "shasum": ""
    },
    "require": {
    "php": ">=8.2"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "Symfony\\Component\\Process\\": ""
    },
    "exclude-from-classmap": [
    "/Tests/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Fabien Potencier",
    "email": "fabien@symfony.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Executes commands in sub-processes",
    "homepage": "https://symfony.com",
    "support": {
    "source": "https://github.com/symfony/process/tree/v7.4.5"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2026-01-26T15:07:59+00:00"
    },
    {
    "name": "symfony/service-contracts",
    "version": "v3.6.1",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/service-contracts.git",
    "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
    "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
    "shasum": ""
    },
    "require": {
    "php": ">=8.1",
    "psr/container": "^1.1|^2.0",
    "symfony/deprecation-contracts": "^2.5|^3"
    },
    "conflict": {
    "ext-psr": "<1.1|>=2"
    },
    "type": "library",
    "extra": {
    "thanks": {
    "url": "https://github.com/symfony/contracts",
    "name": "symfony/contracts"
    },
    "branch-alias": {
    "dev-main": "3.6-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Symfony\\Contracts\\Service\\": ""
    },
    "exclude-from-classmap": [
    "/Test/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Generic abstractions related to writing services",
    "homepage": "https://symfony.com",
    "keywords": [
    "abstractions",
    "contracts",
    "decoupling",
    "interfaces",
    "interoperability",
    "standards"
    ],
    "support": {
    "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2025-07-15T11:30:57+00:00"
    },
    {
    "name": "symfony/string",
    "version": "v8.0.6",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/string.git",
    "reference": "6c9e1108041b5dce21a9a4984b531c4923aa9ec4"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/string/zipball/6c9e1108041b5dce21a9a4984b531c4923aa9ec4",
    "reference": "6c9e1108041b5dce21a9a4984b531c4923aa9ec4",
    "shasum": ""
    },
    "require": {
    "php": ">=8.4",
    "symfony/polyfill-ctype": "^1.8",
    "symfony/polyfill-intl-grapheme": "^1.33",
    "symfony/polyfill-intl-normalizer": "^1.0",
    "symfony/polyfill-mbstring": "^1.0"
    },
    "conflict": {
    "symfony/translation-contracts": "<2.5"
    },
    "require-dev": {
    "symfony/emoji": "^7.4|^8.0",
    "symfony/http-client": "^7.4|^8.0",
    "symfony/intl": "^7.4|^8.0",
    "symfony/translation-contracts": "^2.5|^3.0",
    "symfony/var-exporter": "^7.4|^8.0"
    },
    "type": "library",
    "autoload": {
    "files": [
    "Resources/functions.php"
    ],
    "psr-4": {
    "Symfony\\Component\\String\\": ""
    },
    "exclude-from-classmap": [
    "/Tests/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
    "homepage": "https://symfony.com",
    "keywords": [
    "grapheme",
    "i18n",
    "string",
    "unicode",
    "utf-8",
    "utf8"
    ],
    "support": {
    "source": "https://github.com/symfony/string/tree/v8.0.6"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2026-02-09T10:14:57+00:00"
    },
    {
    "name": "symfony/translation",
    "version": "v8.0.6",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/translation.git",
    "reference": "13ff19bcf2bea492d3c2fbeaa194dd6f4599ce1b"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/translation/zipball/13ff19bcf2bea492d3c2fbeaa194dd6f4599ce1b",
    "reference": "13ff19bcf2bea492d3c2fbeaa194dd6f4599ce1b",
    "shasum": ""
    },
    "require": {
    "php": ">=8.4",
    "symfony/polyfill-mbstring": "^1.0",
    "symfony/translation-contracts": "^3.6.1"
    },
    "conflict": {
    "nikic/php-parser": "<5.0",
    "symfony/http-client-contracts": "<2.5",
    "symfony/service-contracts": "<2.5"
    },
    "provide": {
    "symfony/translation-implementation": "2.3|3.0"
    },
    "require-dev": {
    "nikic/php-parser": "^5.0",
    "psr/log": "^1|^2|^3",
    "symfony/config": "^7.4|^8.0",
    "symfony/console": "^7.4|^8.0",
    "symfony/dependency-injection": "^7.4|^8.0",
    "symfony/finder": "^7.4|^8.0",
    "symfony/http-client-contracts": "^2.5|^3.0",
    "symfony/http-kernel": "^7.4|^8.0",
    "symfony/intl": "^7.4|^8.0",
    "symfony/polyfill-intl-icu": "^1.21",
    "symfony/routing": "^7.4|^8.0",
    "symfony/service-contracts": "^2.5|^3",
    "symfony/yaml": "^7.4|^8.0"
    },
    "type": "library",
    "autoload": {
    "files": [
    "Resources/functions.php"
    ],
    "psr-4": {
    "Symfony\\Component\\Translation\\": ""
    },
    "exclude-from-classmap": [
    "/Tests/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Fabien Potencier",
    "email": "fabien@symfony.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Provides tools to internationalize your application",
    "homepage": "https://symfony.com",
    "support": {
    "source": "https://github.com/symfony/translation/tree/v8.0.6"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2026-02-17T13:07:04+00:00"
    },
    {
    "name": "symfony/translation-contracts",
    "version": "v3.6.1",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/translation-contracts.git",
    "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
    "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
    "shasum": ""
    },
    "require": {
    "php": ">=8.1"
    },
    "type": "library",
    "extra": {
    "thanks": {
    "url": "https://github.com/symfony/contracts",
    "name": "symfony/contracts"
    },
    "branch-alias": {
    "dev-main": "3.6-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Symfony\\Contracts\\Translation\\": ""
    },
    "exclude-from-classmap": [
    "/Test/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Generic abstractions related to translation",
    "homepage": "https://symfony.com",
    "keywords": [
    "abstractions",
    "contracts",
    "decoupling",
    "interfaces",
    "interoperability",
    "standards"
    ],
    "support": {
    "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2025-07-15T13:41:35+00:00"
    },
    {
    "name": "symfony/var-dumper",
    "version": "v7.4.6",
    "source": {
    "type": "git",
    "url": "https://github.com/symfony/var-dumper.git",
    "reference": "045321c440ac18347b136c63d2e9bf28a2dc0291"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/symfony/var-dumper/zipball/045321c440ac18347b136c63d2e9bf28a2dc0291",
    "reference": "045321c440ac18347b136c63d2e9bf28a2dc0291",
    "shasum": ""
    },
    "require": {
    "php": ">=8.2",
    "symfony/deprecation-contracts": "^2.5|^3",
    "symfony/polyfill-mbstring": "~1.0"
    },
    "conflict": {
    "symfony/console": "<6.4"
    },
    "require-dev": {
    "symfony/console": "^6.4|^7.0|^8.0",
    "symfony/http-kernel": "^6.4|^7.0|^8.0",
    "symfony/process": "^6.4|^7.0|^8.0",
    "symfony/uid": "^6.4|^7.0|^8.0",
    "twig/twig": "^3.12"
    },
    "bin": [
    "Resources/bin/var-dump-server"
    ],
    "type": "library",
    "autoload": {
    "files": [
    "Resources/functions/dump.php"
    ],
    "psr-4": {
    "Symfony\\Component\\VarDumper\\": ""
    },
    "exclude-from-classmap": [
    "/Tests/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nicolas Grekas",
    "email": "p@tchwork.com"
    },
    {
    "name": "Symfony Community",
    "homepage": "https://symfony.com/contributors"
    }
    ],
    "description": "Provides mechanisms for walking through any arbitrary PHP variable",
    "homepage": "https://symfony.com",
    "keywords": [
    "debug",
    "dump"
    ],
    "support": {
    "source": "https://github.com/symfony/var-dumper/tree/v7.4.6"
    },
    "funding": [
    {
    "url": "https://symfony.com/sponsor",
    "type": "custom"
    },
    {
    "url": "https://github.com/fabpot",
    "type": "github"
    },
    {
    "url": "https://github.com/nicolas-grekas",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    "type": "tidelift"
    }
    ],
    "time": "2026-02-15T10:53:20+00:00"
    },
    {
    "name": "vlucas/phpdotenv",
    "version": "v5.6.3",
    "source": {
    "type": "git",
    "url": "https://github.com/vlucas/phpdotenv.git",
    "reference": "955e7815d677a3eaa7075231212f2110983adecc"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc",
    "reference": "955e7815d677a3eaa7075231212f2110983adecc",
    "shasum": ""
    },
    "require": {
    "ext-pcre": "*",
    "graham-campbell/result-type": "^1.1.4",
    "php": "^7.2.5 || ^8.0",
    "phpoption/phpoption": "^1.9.5",
    "symfony/polyfill-ctype": "^1.26",
    "symfony/polyfill-mbstring": "^1.26",
    "symfony/polyfill-php80": "^1.26"
    },
    "require-dev": {
    "bamarni/composer-bin-plugin": "^1.8.2",
    "ext-filter": "*",
    "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
    },
    "suggest": {
    "ext-filter": "Required to use the boolean validator."
    },
    "type": "library",
    "extra": {
    "bamarni-bin": {
    "bin-links": true,
    "forward-command": false
    },
    "branch-alias": {
    "dev-master": "5.6-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Dotenv\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Graham Campbell",
    "email": "hello@gjcampbell.co.uk",
    "homepage": "https://github.com/GrahamCampbell"
    },
    {
    "name": "Vance Lucas",
    "email": "vance@vancelucas.com",
    "homepage": "https://github.com/vlucas"
    }
    ],
    "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
    "keywords": [
    "dotenv",
    "env",
    "environment"
    ],
    "support": {
    "issues": "https://github.com/vlucas/phpdotenv/issues",
    "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3"
    },
    "funding": [
    {
    "url": "https://github.com/GrahamCampbell",
    "type": "github"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
    "type": "tidelift"
    }
    ],
    "time": "2025-12-27T19:49:13+00:00"
    },
    {
    "name": "voku/portable-ascii",
    "version": "2.0.3",
    "source": {
    "type": "git",
    "url": "https://github.com/voku/portable-ascii.git",
    "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
    "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
    "shasum": ""
    },
    "require": {
    "php": ">=7.0.0"
    },
    "require-dev": {
    "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
    },
    "suggest": {
    "ext-intl": "Use Intl for transliterator_transliterate() support"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "voku\\": "src/voku/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Lars Moelleken",
    "homepage": "https://www.moelleken.org/"
    }
    ],
    "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
    "homepage": "https://github.com/voku/portable-ascii",
    "keywords": [
    "ascii",
    "clean",
    "php"
    ],
    "support": {
    "issues": "https://github.com/voku/portable-ascii/issues",
    "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
    },
    "funding": [
    {
    "url": "https://www.paypal.me/moelleken",
    "type": "custom"
    },
    {
    "url": "https://github.com/voku",
    "type": "github"
    },
    {
    "url": "https://opencollective.com/portable-ascii",
    "type": "open_collective"
    },
    {
    "url": "https://www.patreon.com/voku",
    "type": "patreon"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
    "type": "tidelift"
    }
    ],
    "time": "2024-11-21T01:49:47+00:00"
    }
    ],
    "packages-dev": [
    {
    "name": "brianium/paratest",
    "version": "v7.19.0",
    "source": {
    "type": "git",
    "url": "https://github.com/paratestphp/paratest.git",
    "reference": "7c6c29af7c4b406b49ce0c6b0a3a81d3684474e6"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/paratestphp/paratest/zipball/7c6c29af7c4b406b49ce0c6b0a3a81d3684474e6",
    "reference": "7c6c29af7c4b406b49ce0c6b0a3a81d3684474e6",
    "shasum": ""
    },
    "require": {
    "ext-dom": "*",
    "ext-pcre": "*",
    "ext-reflection": "*",
    "ext-simplexml": "*",
    "fidry/cpu-core-counter": "^1.3.0",
    "jean85/pretty-package-versions": "^2.1.1",
    "php": "~8.3.0 || ~8.4.0 || ~8.5.0",
    "phpunit/php-code-coverage": "^12.5.3 || ^13.0.1",
    "phpunit/php-file-iterator": "^6.0.1 || ^7",
    "phpunit/php-timer": "^8 || ^9",
    "phpunit/phpunit": "^12.5.9 || ^13",
    "sebastian/environment": "^8.0.3 || ^9",
    "symfony/console": "^7.4.4 || ^8.0.4",
    "symfony/process": "^7.4.5 || ^8.0.5"
    },
    "require-dev": {
    "doctrine/coding-standard": "^14.0.0",
    "ext-pcntl": "*",
    "ext-pcov": "*",
    "ext-posix": "*",
    "phpstan/phpstan": "^2.1.38",
    "phpstan/phpstan-deprecation-rules": "^2.0.3",
    "phpstan/phpstan-phpunit": "^2.0.12",
    "phpstan/phpstan-strict-rules": "^2.0.8",
    "symfony/filesystem": "^7.4.0 || ^8.0.1"
    },
    "bin": [
    "bin/paratest",
    "bin/paratest_for_phpstorm"
    ],
    "type": "library",
    "autoload": {
    "psr-4": {
    "ParaTest\\": [
    "src/"
    ]
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Brian Scaturro",
    "email": "scaturrob@gmail.com",
    "role": "Developer"
    },
    {
    "name": "Filippo Tessarotto",
    "email": "zoeslam@gmail.com",
    "role": "Developer"
    }
    ],
    "description": "Parallel testing for PHP",
    "homepage": "https://github.com/paratestphp/paratest",
    "keywords": [
    "concurrent",
    "parallel",
    "phpunit",
    "testing"
    ],
    "support": {
    "issues": "https://github.com/paratestphp/paratest/issues",
    "source": "https://github.com/paratestphp/paratest/tree/v7.19.0"
    },
    "funding": [
    {
    "url": "https://github.com/sponsors/Slamdunk",
    "type": "github"
    },
    {
    "url": "https://paypal.me/filippotessarotto",
    "type": "paypal"
    }
    ],
    "time": "2026-02-06T10:53:26+00:00"
    },
    {
    "name": "doctrine/deprecations",
    "version": "1.1.6",
    "source": {
    "type": "git",
    "url": "https://github.com/doctrine/deprecations.git",
    "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
    "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
    "shasum": ""
    },
    "require": {
    "php": "^7.1 || ^8.0"
    },
    "conflict": {
    "phpunit/phpunit": "<=7.5 || >=14"
    },
    "require-dev": {
    "doctrine/coding-standard": "^9 || ^12 || ^14",
    "phpstan/phpstan": "1.4.10 || 2.1.30",
    "phpstan/phpstan-phpunit": "^1.0 || ^2",
    "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
    "psr/log": "^1 || ^2 || ^3"
    },
    "suggest": {
    "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "Doctrine\\Deprecations\\": "src"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
    "homepage": "https://www.doctrine-project.org/",
    "support": {
    "issues": "https://github.com/doctrine/deprecations/issues",
    "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
    },
    "time": "2026-02-07T07:09:04+00:00"
    },
    {
    "name": "fidry/cpu-core-counter",
    "version": "1.3.0",
    "source": {
    "type": "git",
    "url": "https://github.com/theofidry/cpu-core-counter.git",
    "reference": "db9508f7b1474469d9d3c53b86f817e344732678"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/db9508f7b1474469d9d3c53b86f817e344732678",
    "reference": "db9508f7b1474469d9d3c53b86f817e344732678",
    "shasum": ""
    },
    "require": {
    "php": "^7.2 || ^8.0"
    },
    "require-dev": {
    "fidry/makefile": "^0.2.0",
    "fidry/php-cs-fixer-config": "^1.1.2",
    "phpstan/extension-installer": "^1.2.0",
    "phpstan/phpstan": "^2.0",
    "phpstan/phpstan-deprecation-rules": "^2.0.0",
    "phpstan/phpstan-phpunit": "^2.0",
    "phpstan/phpstan-strict-rules": "^2.0",
    "phpunit/phpunit": "^8.5.31 || ^9.5.26",
    "webmozarts/strict-phpunit": "^7.5"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "Fidry\\CpuCoreCounter\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Théo FIDRY",
    "email": "theo.fidry@gmail.com"
    }
    ],
    "description": "Tiny utility to get the number of CPU cores.",
    "keywords": [
    "CPU",
    "core"
    ],
    "support": {
    "issues": "https://github.com/theofidry/cpu-core-counter/issues",
    "source": "https://github.com/theofidry/cpu-core-counter/tree/1.3.0"
    },
    "funding": [
    {
    "url": "https://github.com/theofidry",
    "type": "github"
    }
    ],
    "time": "2025-08-14T07:29:31+00:00"
    },
    {
    "name": "hamcrest/hamcrest-php",
    "version": "v2.1.1",
    "source": {
    "type": "git",
    "url": "https://github.com/hamcrest/hamcrest-php.git",
    "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
    "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
    "shasum": ""
    },
    "require": {
    "php": "^7.4|^8.0"
    },
    "replace": {
    "cordoval/hamcrest-php": "*",
    "davedevelopment/hamcrest-php": "*",
    "kodova/hamcrest-php": "*"
    },
    "require-dev": {
    "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
    "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "2.1-dev"
    }
    },
    "autoload": {
    "classmap": [
    "hamcrest"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "description": "This is the PHP port of Hamcrest Matchers",
    "keywords": [
    "test"
    ],
    "support": {
    "issues": "https://github.com/hamcrest/hamcrest-php/issues",
    "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
    },
    "time": "2025-04-30T06:54:44+00:00"
    },
    {
    "name": "jean85/pretty-package-versions",
    "version": "2.1.1",
    "source": {
    "type": "git",
    "url": "https://github.com/Jean85/pretty-package-versions.git",
    "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a",
    "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a",
    "shasum": ""
    },
    "require": {
    "composer-runtime-api": "^2.1.0",
    "php": "^7.4|^8.0"
    },
    "require-dev": {
    "friendsofphp/php-cs-fixer": "^3.2",
    "jean85/composer-provided-replaced-stub-package": "^1.0",
    "phpstan/phpstan": "^2.0",
    "phpunit/phpunit": "^7.5|^8.5|^9.6",
    "rector/rector": "^2.0",
    "vimeo/psalm": "^4.3 || ^5.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "1.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Jean85\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Alessandro Lai",
    "email": "alessandro.lai85@gmail.com"
    }
    ],
    "description": "A library to get pretty versions strings of installed dependencies",
    "keywords": [
    "composer",
    "package",
    "release",
    "versions"
    ],
    "support": {
    "issues": "https://github.com/Jean85/pretty-package-versions/issues",
    "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1"
    },
    "time": "2025-03-19T14:43:43+00:00"
    },
    {
    "name": "laravel/pint",
    "version": "v1.27.1",
    "source": {
    "type": "git",
    "url": "https://github.com/laravel/pint.git",
    "reference": "54cca2de13790570c7b6f0f94f37896bee4abcb5"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/laravel/pint/zipball/54cca2de13790570c7b6f0f94f37896bee4abcb5",
    "reference": "54cca2de13790570c7b6f0f94f37896bee4abcb5",
    "shasum": ""
    },
    "require": {
    "ext-json": "*",
    "ext-mbstring": "*",
    "ext-tokenizer": "*",
    "ext-xml": "*",
    "php": "^8.2.0"
    },
    "require-dev": {
    "friendsofphp/php-cs-fixer": "^3.93.1",
    "illuminate/view": "^12.51.0",
    "larastan/larastan": "^3.9.2",
    "laravel-zero/framework": "^12.0.5",
    "mockery/mockery": "^1.6.12",
    "nunomaduro/termwind": "^2.3.3",
    "pestphp/pest": "^3.8.5"
    },
    "bin": [
    "builds/pint"
    ],
    "type": "project",
    "autoload": {
    "psr-4": {
    "App\\": "app/",
    "Database\\Seeders\\": "database/seeders/",
    "Database\\Factories\\": "database/factories/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nuno Maduro",
    "email": "enunomaduro@gmail.com"
    }
    ],
    "description": "An opinionated code formatter for PHP.",
    "homepage": "https://laravel.com",
    "keywords": [
    "dev",
    "format",
    "formatter",
    "lint",
    "linter",
    "php"
    ],
    "support": {
    "issues": "https://github.com/laravel/pint/issues",
    "source": "https://github.com/laravel/pint"
    },
    "time": "2026-02-10T20:00:20+00:00"
    },
    {
    "name": "mockery/mockery",
    "version": "1.6.12",
    "source": {
    "type": "git",
    "url": "https://github.com/mockery/mockery.git",
    "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
    "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
    "shasum": ""
    },
    "require": {
    "hamcrest/hamcrest-php": "^2.0.1",
    "lib-pcre": ">=7.0",
    "php": ">=7.3"
    },
    "conflict": {
    "phpunit/phpunit": "<8.0"
    },
    "require-dev": {
    "phpunit/phpunit": "^8.5 || ^9.6.17",
    "symplify/easy-coding-standard": "^12.1.14"
    },
    "type": "library",
    "autoload": {
    "files": [
    "library/helpers.php",
    "library/Mockery.php"
    ],
    "psr-4": {
    "Mockery\\": "library/Mockery"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Pádraic Brady",
    "email": "padraic.brady@gmail.com",
    "homepage": "https://github.com/padraic",
    "role": "Author"
    },
    {
    "name": "Dave Marshall",
    "email": "dave.marshall@atstsolutions.co.uk",
    "homepage": "https://davedevelopment.co.uk",
    "role": "Developer"
    },
    {
    "name": "Nathanael Esayeas",
    "email": "nathanael.esayeas@protonmail.com",
    "homepage": "https://github.com/ghostwriter",
    "role": "Lead Developer"
    }
    ],
    "description": "Mockery is a simple yet flexible PHP mock object framework",
    "homepage": "https://github.com/mockery/mockery",
    "keywords": [
    "BDD",
    "TDD",
    "library",
    "mock",
    "mock objects",
    "mockery",
    "stub",
    "test",
    "test double",
    "testing"
    ],
    "support": {
    "docs": "https://docs.mockery.io/",
    "issues": "https://github.com/mockery/mockery/issues",
    "rss": "https://github.com/mockery/mockery/releases.atom",
    "security": "https://github.com/mockery/mockery/security/advisories",
    "source": "https://github.com/mockery/mockery"
    },
    "time": "2024-05-16T03:13:13+00:00"
    },
    {
    "name": "myclabs/deep-copy",
    "version": "1.13.4",
    "source": {
    "type": "git",
    "url": "https://github.com/myclabs/DeepCopy.git",
    "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
    "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
    "shasum": ""
    },
    "require": {
    "php": "^7.1 || ^8.0"
    },
    "conflict": {
    "doctrine/collections": "<1.6.8",
    "doctrine/common": "<2.13.3 || >=3 <3.2.2"
    },
    "require-dev": {
    "doctrine/collections": "^1.6.8",
    "doctrine/common": "^2.13.3 || ^3.2.2",
    "phpspec/prophecy": "^1.10",
    "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
    },
    "type": "library",
    "autoload": {
    "files": [
    "src/DeepCopy/deep_copy.php"
    ],
    "psr-4": {
    "DeepCopy\\": "src/DeepCopy/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "description": "Create deep copies (clones) of your objects",
    "keywords": [
    "clone",
    "copy",
    "duplicate",
    "object",
    "object graph"
    ],
    "support": {
    "issues": "https://github.com/myclabs/DeepCopy/issues",
    "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
    },
    "funding": [
    {
    "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
    "type": "tidelift"
    }
    ],
    "time": "2025-08-01T08:46:24+00:00"
    },
    {
    "name": "nikic/php-parser",
    "version": "v5.7.0",
    "source": {
    "type": "git",
    "url": "https://github.com/nikic/PHP-Parser.git",
    "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
    "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
    "shasum": ""
    },
    "require": {
    "ext-ctype": "*",
    "ext-json": "*",
    "ext-tokenizer": "*",
    "php": ">=7.4"
    },
    "require-dev": {
    "ircmaxell/php-yacc": "^0.0.7",
    "phpunit/phpunit": "^9.0"
    },
    "bin": [
    "bin/php-parse"
    ],
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "5.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "PhpParser\\": "lib/PhpParser"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Nikita Popov"
    }
    ],
    "description": "A PHP parser written in PHP",
    "keywords": [
    "parser",
    "php"
    ],
    "support": {
    "issues": "https://github.com/nikic/PHP-Parser/issues",
    "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
    },
    "time": "2025-12-06T11:56:16+00:00"
    },
    {
    "name": "pestphp/pest",
    "version": "v4.4.1",
    "source": {
    "type": "git",
    "url": "https://github.com/pestphp/pest.git",
    "reference": "f96a1b27864b585b0b29b0ee7331176726f7e54a"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/pestphp/pest/zipball/f96a1b27864b585b0b29b0ee7331176726f7e54a",
    "reference": "f96a1b27864b585b0b29b0ee7331176726f7e54a",
    "shasum": ""
    },
    "require": {
    "brianium/paratest": "^7.19.0",
    "nunomaduro/collision": "^8.9.0",
    "nunomaduro/termwind": "^2.4.0",
    "pestphp/pest-plugin": "^4.0.0",
    "pestphp/pest-plugin-arch": "^4.0.0",
    "pestphp/pest-plugin-mutate": "^4.0.1",
    "pestphp/pest-plugin-profanity": "^4.2.1",
    "php": "^8.3.0",
    "phpunit/phpunit": "^12.5.12",
    "symfony/process": "^7.4.5|^8.0.5"
    },
    "conflict": {
    "filp/whoops": "<2.18.3",
    "phpunit/phpunit": ">12.5.12",
    "sebastian/exporter": "<7.0.0",
    "webmozart/assert": "<1.11.0"
    },
    "require-dev": {
    "pestphp/pest-dev-tools": "^4.1.0",
    "pestphp/pest-plugin-browser": "^4.3.0",
    "pestphp/pest-plugin-type-coverage": "^4.0.3",
    "psy/psysh": "^0.12.20"
    },
    "bin": [
    "bin/pest"
    ],
    "type": "library",
    "extra": {
    "pest": {
    "plugins": [
    "Pest\\Mutate\\Plugins\\Mutate",
    "Pest\\Plugins\\Configuration",
    "Pest\\Plugins\\Bail",
    "Pest\\Plugins\\Cache",
    "Pest\\Plugins\\Coverage",
    "Pest\\Plugins\\Init",
    "Pest\\Plugins\\Environment",
    "Pest\\Plugins\\Help",
    "Pest\\Plugins\\Memory",
    "Pest\\Plugins\\Only",
    "Pest\\Plugins\\Printer",
    "Pest\\Plugins\\ProcessIsolation",
    "Pest\\Plugins\\Profile",
    "Pest\\Plugins\\Retry",
    "Pest\\Plugins\\Snapshot",
    "Pest\\Plugins\\Verbose",
    "Pest\\Plugins\\Version",
    "Pest\\Plugins\\Shard",
    "Pest\\Plugins\\Parallel"
    ]
    },
    "phpstan": {
    "includes": [
    "extension.neon"
    ]
    }
    },
    "autoload": {
    "files": [
    "src/Functions.php",
    "src/Pest.php"
    ],
    "psr-4": {
    "Pest\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nuno Maduro",
    "email": "enunomaduro@gmail.com"
    }
    ],
    "description": "The elegant PHP Testing Framework.",
    "keywords": [
    "framework",
    "pest",
    "php",
    "test",
    "testing",
    "unit"
    ],
    "support": {
    "issues": "https://github.com/pestphp/pest/issues",
    "source": "https://github.com/pestphp/pest/tree/v4.4.1"
    },
    "funding": [
    {
    "url": "https://www.paypal.com/paypalme/enunomaduro",
    "type": "custom"
    },
    {
    "url": "https://github.com/nunomaduro",
    "type": "github"
    }
    ],
    "time": "2026-02-17T15:27:18+00:00"
    },
    {
    "name": "pestphp/pest-plugin",
    "version": "v4.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/pestphp/pest-plugin.git",
    "reference": "9d4b93d7f73d3f9c3189bb22c220fef271cdf568"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/9d4b93d7f73d3f9c3189bb22c220fef271cdf568",
    "reference": "9d4b93d7f73d3f9c3189bb22c220fef271cdf568",
    "shasum": ""
    },
    "require": {
    "composer-plugin-api": "^2.0.0",
    "composer-runtime-api": "^2.2.2",
    "php": "^8.3"
    },
    "conflict": {
    "pestphp/pest": "<4.0.0"
    },
    "require-dev": {
    "composer/composer": "^2.8.10",
    "pestphp/pest": "^4.0.0",
    "pestphp/pest-dev-tools": "^4.0.0"
    },
    "type": "composer-plugin",
    "extra": {
    "class": "Pest\\Plugin\\Manager"
    },
    "autoload": {
    "psr-4": {
    "Pest\\Plugin\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "description": "The Pest plugin manager",
    "keywords": [
    "framework",
    "manager",
    "pest",
    "php",
    "plugin",
    "test",
    "testing",
    "unit"
    ],
    "support": {
    "source": "https://github.com/pestphp/pest-plugin/tree/v4.0.0"
    },
    "funding": [
    {
    "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
    "type": "custom"
    },
    {
    "url": "https://github.com/nunomaduro",
    "type": "github"
    },
    {
    "url": "https://www.patreon.com/nunomaduro",
    "type": "patreon"
    }
    ],
    "time": "2025-08-20T12:35:58+00:00"
    },
    {
    "name": "pestphp/pest-plugin-arch",
    "version": "v4.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/pestphp/pest-plugin-arch.git",
    "reference": "25bb17e37920ccc35cbbcda3b00d596aadf3e58d"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/25bb17e37920ccc35cbbcda3b00d596aadf3e58d",
    "reference": "25bb17e37920ccc35cbbcda3b00d596aadf3e58d",
    "shasum": ""
    },
    "require": {
    "pestphp/pest-plugin": "^4.0.0",
    "php": "^8.3",
    "ta-tikoma/phpunit-architecture-test": "^0.8.5"
    },
    "require-dev": {
    "pestphp/pest": "^4.0.0",
    "pestphp/pest-dev-tools": "^4.0.0"
    },
    "type": "library",
    "extra": {
    "pest": {
    "plugins": [
    "Pest\\Arch\\Plugin"
    ]
    }
    },
    "autoload": {
    "files": [
    "src/Autoload.php"
    ],
    "psr-4": {
    "Pest\\Arch\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "description": "The Arch plugin for Pest PHP.",
    "keywords": [
    "arch",
    "architecture",
    "framework",
    "pest",
    "php",
    "plugin",
    "test",
    "testing",
    "unit"
    ],
    "support": {
    "source": "https://github.com/pestphp/pest-plugin-arch/tree/v4.0.0"
    },
    "funding": [
    {
    "url": "https://www.paypal.com/paypalme/enunomaduro",
    "type": "custom"
    },
    {
    "url": "https://github.com/nunomaduro",
    "type": "github"
    }
    ],
    "time": "2025-08-20T13:10:51+00:00"
    },
    {
    "name": "pestphp/pest-plugin-mutate",
    "version": "v4.0.1",
    "source": {
    "type": "git",
    "url": "https://github.com/pestphp/pest-plugin-mutate.git",
    "reference": "d9b32b60b2385e1688a68cc227594738ec26d96c"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/d9b32b60b2385e1688a68cc227594738ec26d96c",
    "reference": "d9b32b60b2385e1688a68cc227594738ec26d96c",
    "shasum": ""
    },
    "require": {
    "nikic/php-parser": "^5.6.1",
    "pestphp/pest-plugin": "^4.0.0",
    "php": "^8.3",
    "psr/simple-cache": "^3.0.0"
    },
    "require-dev": {
    "pestphp/pest": "^4.0.0",
    "pestphp/pest-dev-tools": "^4.0.0",
    "pestphp/pest-plugin-type-coverage": "^4.0.0"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "Pest\\Mutate\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Nuno Maduro",
    "email": "enunomaduro@gmail.com"
    },
    {
    "name": "Sandro Gehri",
    "email": "sandrogehri@gmail.com"
    }
    ],
    "description": "Mutates your code to find untested cases",
    "keywords": [
    "framework",
    "mutate",
    "mutation",
    "pest",
    "php",
    "plugin",
    "test",
    "testing",
    "unit"
    ],
    "support": {
    "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v4.0.1"
    },
    "funding": [
    {
    "url": "https://www.paypal.com/paypalme/enunomaduro",
    "type": "custom"
    },
    {
    "url": "https://github.com/gehrisandro",
    "type": "github"
    },
    {
    "url": "https://github.com/nunomaduro",
    "type": "github"
    }
    ],
    "time": "2025-08-21T20:19:25+00:00"
    },
    {
    "name": "pestphp/pest-plugin-profanity",
    "version": "v4.2.1",
    "source": {
    "type": "git",
    "url": "https://github.com/pestphp/pest-plugin-profanity.git",
    "reference": "343cfa6f3564b7e35df0ebb77b7fa97039f72b27"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/pestphp/pest-plugin-profanity/zipball/343cfa6f3564b7e35df0ebb77b7fa97039f72b27",
    "reference": "343cfa6f3564b7e35df0ebb77b7fa97039f72b27",
    "shasum": ""
    },
    "require": {
    "pestphp/pest-plugin": "^4.0.0",
    "php": "^8.3"
    },
    "require-dev": {
    "faissaloux/pest-plugin-inside": "^1.9",
    "pestphp/pest": "^4.0.0",
    "pestphp/pest-dev-tools": "^4.0.0"
    },
    "type": "library",
    "extra": {
    "pest": {
    "plugins": [
    "Pest\\Profanity\\Plugin"
    ]
    }
    },
    "autoload": {
    "psr-4": {
    "Pest\\Profanity\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "description": "The Pest Profanity Plugin",
    "keywords": [
    "framework",
    "pest",
    "php",
    "plugin",
    "profanity",
    "test",
    "testing",
    "unit"
    ],
    "support": {
    "source": "https://github.com/pestphp/pest-plugin-profanity/tree/v4.2.1"
    },
    "time": "2025-12-08T00:13:17+00:00"
    },
    {
    "name": "phar-io/manifest",
    "version": "2.0.4",
    "source": {
    "type": "git",
    "url": "https://github.com/phar-io/manifest.git",
    "reference": "54750ef60c58e43759730615a392c31c80e23176"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
    "reference": "54750ef60c58e43759730615a392c31c80e23176",
    "shasum": ""
    },
    "require": {
    "ext-dom": "*",
    "ext-libxml": "*",
    "ext-phar": "*",
    "ext-xmlwriter": "*",
    "phar-io/version": "^3.0.1",
    "php": "^7.2 || ^8.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "2.0.x-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Arne Blankerts",
    "email": "arne@blankerts.de",
    "role": "Developer"
    },
    {
    "name": "Sebastian Heuer",
    "email": "sebastian@phpeople.de",
    "role": "Developer"
    },
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de",
    "role": "Developer"
    }
    ],
    "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
    "support": {
    "issues": "https://github.com/phar-io/manifest/issues",
    "source": "https://github.com/phar-io/manifest/tree/2.0.4"
    },
    "funding": [
    {
    "url": "https://github.com/theseer",
    "type": "github"
    }
    ],
    "time": "2024-03-03T12:33:53+00:00"
    },
    {
    "name": "phar-io/version",
    "version": "3.2.1",
    "source": {
    "type": "git",
    "url": "https://github.com/phar-io/version.git",
    "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
    "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
    "shasum": ""
    },
    "require": {
    "php": "^7.2 || ^8.0"
    },
    "type": "library",
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Arne Blankerts",
    "email": "arne@blankerts.de",
    "role": "Developer"
    },
    {
    "name": "Sebastian Heuer",
    "email": "sebastian@phpeople.de",
    "role": "Developer"
    },
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de",
    "role": "Developer"
    }
    ],
    "description": "Library for handling version information and constraints",
    "support": {
    "issues": "https://github.com/phar-io/version/issues",
    "source": "https://github.com/phar-io/version/tree/3.2.1"
    },
    "time": "2022-02-21T01:04:05+00:00"
    },
    {
    "name": "phpdocumentor/reflection-common",
    "version": "2.2.0",
    "source": {
    "type": "git",
    "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
    "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
    "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
    "shasum": ""
    },
    "require": {
    "php": "^7.2 || ^8.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-2.x": "2.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "phpDocumentor\\Reflection\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Jaap van Otterdijk",
    "email": "opensource@ijaap.nl"
    }
    ],
    "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
    "homepage": "http://www.phpdoc.org",
    "keywords": [
    "FQSEN",
    "phpDocumentor",
    "phpdoc",
    "reflection",
    "static analysis"
    ],
    "support": {
    "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
    "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
    },
    "time": "2020-06-27T09:03:43+00:00"
    },
    {
    "name": "phpdocumentor/reflection-docblock",
    "version": "6.0.2",
    "source": {
    "type": "git",
    "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
    "reference": "897b5986ece6b4f9d8413fea345c7d49c757d6bf"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/897b5986ece6b4f9d8413fea345c7d49c757d6bf",
    "reference": "897b5986ece6b4f9d8413fea345c7d49c757d6bf",
    "shasum": ""
    },
    "require": {
    "doctrine/deprecations": "^1.1",
    "ext-filter": "*",
    "php": "^7.4 || ^8.0",
    "phpdocumentor/reflection-common": "^2.2",
    "phpdocumentor/type-resolver": "^2.0",
    "phpstan/phpdoc-parser": "^2.0",
    "webmozart/assert": "^1.9.1 || ^2"
    },
    "require-dev": {
    "mockery/mockery": "~1.3.5 || ~1.6.0",
    "phpstan/extension-installer": "^1.1",
    "phpstan/phpstan": "^1.8",
    "phpstan/phpstan-mockery": "^1.1",
    "phpstan/phpstan-webmozart-assert": "^1.2",
    "phpunit/phpunit": "^9.5",
    "psalm/phar": "^5.26",
    "shipmonk/dead-code-detector": "^0.5.1"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-master": "5.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "phpDocumentor\\Reflection\\": "src"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Mike van Riel",
    "email": "me@mikevanriel.com"
    },
    {
    "name": "Jaap van Otterdijk",
    "email": "opensource@ijaap.nl"
    }
    ],
    "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
    "support": {
    "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
    "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/6.0.2"
    },
    "time": "2026-03-01T18:43:49+00:00"
    },
    {
    "name": "phpdocumentor/type-resolver",
    "version": "2.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/phpDocumentor/TypeResolver.git",
    "reference": "327a05bbee54120d4786a0dc67aad30226ad4cf9"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/327a05bbee54120d4786a0dc67aad30226ad4cf9",
    "reference": "327a05bbee54120d4786a0dc67aad30226ad4cf9",
    "shasum": ""
    },
    "require": {
    "doctrine/deprecations": "^1.0",
    "php": "^7.4 || ^8.0",
    "phpdocumentor/reflection-common": "^2.0",
    "phpstan/phpdoc-parser": "^2.0"
    },
    "require-dev": {
    "ext-tokenizer": "*",
    "phpbench/phpbench": "^1.2",
    "phpstan/extension-installer": "^1.4",
    "phpstan/phpstan": "^2.1",
    "phpstan/phpstan-phpunit": "^2.0",
    "phpunit/phpunit": "^9.5",
    "psalm/phar": "^4"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-1.x": "1.x-dev",
    "dev-2.x": "2.x-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "phpDocumentor\\Reflection\\": "src"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Mike van Riel",
    "email": "me@mikevanriel.com"
    }
    ],
    "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
    "support": {
    "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
    "source": "https://github.com/phpDocumentor/TypeResolver/tree/2.0.0"
    },
    "time": "2026-01-06T21:53:42+00:00"
    },
    {
    "name": "phpstan/phpdoc-parser",
    "version": "2.3.2",
    "source": {
    "type": "git",
    "url": "https://github.com/phpstan/phpdoc-parser.git",
    "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/a004701b11273a26cd7955a61d67a7f1e525a45a",
    "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a",
    "shasum": ""
    },
    "require": {
    "php": "^7.4 || ^8.0"
    },
    "require-dev": {
    "doctrine/annotations": "^2.0",
    "nikic/php-parser": "^5.3.0",
    "php-parallel-lint/php-parallel-lint": "^1.2",
    "phpstan/extension-installer": "^1.0",
    "phpstan/phpstan": "^2.0",
    "phpstan/phpstan-phpunit": "^2.0",
    "phpstan/phpstan-strict-rules": "^2.0",
    "phpunit/phpunit": "^9.6",
    "symfony/process": "^5.2"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "PHPStan\\PhpDocParser\\": [
    "src/"
    ]
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "description": "PHPDoc parser with support for nullable, intersection and generic types",
    "support": {
    "issues": "https://github.com/phpstan/phpdoc-parser/issues",
    "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.2"
    },
    "time": "2026-01-25T14:56:51+00:00"
    },
    {
    "name": "phpunit/php-code-coverage",
    "version": "12.5.3",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
    "reference": "b015312f28dd75b75d3422ca37dff2cd1a565e8d"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/b015312f28dd75b75d3422ca37dff2cd1a565e8d",
    "reference": "b015312f28dd75b75d3422ca37dff2cd1a565e8d",
    "shasum": ""
    },
    "require": {
    "ext-dom": "*",
    "ext-libxml": "*",
    "ext-xmlwriter": "*",
    "nikic/php-parser": "^5.7.0",
    "php": ">=8.3",
    "phpunit/php-file-iterator": "^6.0",
    "phpunit/php-text-template": "^5.0",
    "sebastian/complexity": "^5.0",
    "sebastian/environment": "^8.0.3",
    "sebastian/lines-of-code": "^4.0",
    "sebastian/version": "^6.0",
    "theseer/tokenizer": "^2.0.1"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.5.1"
    },
    "suggest": {
    "ext-pcov": "PHP extension that provides line coverage",
    "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "12.5.x-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de",
    "role": "lead"
    }
    ],
    "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
    "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
    "keywords": [
    "coverage",
    "testing",
    "xunit"
    ],
    "support": {
    "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
    "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
    "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.5.3"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    },
    {
    "url": "https://liberapay.com/sebastianbergmann",
    "type": "liberapay"
    },
    {
    "url": "https://thanks.dev/u/gh/sebastianbergmann",
    "type": "thanks_dev"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
    "type": "tidelift"
    }
    ],
    "time": "2026-02-06T06:01:44+00:00"
    },
    {
    "name": "phpunit/php-file-iterator",
    "version": "6.0.1",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
    "reference": "3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5",
    "reference": "3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5",
    "shasum": ""
    },
    "require": {
    "php": ">=8.3"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "6.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de",
    "role": "lead"
    }
    ],
    "description": "FilterIterator implementation that filters files based on a list of suffixes.",
    "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
    "keywords": [
    "filesystem",
    "iterator"
    ],
    "support": {
    "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
    "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
    "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/6.0.1"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    },
    {
    "url": "https://liberapay.com/sebastianbergmann",
    "type": "liberapay"
    },
    {
    "url": "https://thanks.dev/u/gh/sebastianbergmann",
    "type": "thanks_dev"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/phpunit/php-file-iterator",
    "type": "tidelift"
    }
    ],
    "time": "2026-02-02T14:04:18+00:00"
    },
    {
    "name": "phpunit/php-invoker",
    "version": "6.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/php-invoker.git",
    "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406",
    "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406",
    "shasum": ""
    },
    "require": {
    "php": ">=8.3"
    },
    "require-dev": {
    "ext-pcntl": "*",
    "phpunit/phpunit": "^12.0"
    },
    "suggest": {
    "ext-pcntl": "*"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "6.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de",
    "role": "lead"
    }
    ],
    "description": "Invoke callables with a timeout",
    "homepage": "https://github.com/sebastianbergmann/php-invoker/",
    "keywords": [
    "process"
    ],
    "support": {
    "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
    "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
    "source": "https://github.com/sebastianbergmann/php-invoker/tree/6.0.0"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    }
    ],
    "time": "2025-02-07T04:58:58+00:00"
    },
    {
    "name": "phpunit/php-text-template",
    "version": "5.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/php-text-template.git",
    "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53",
    "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53",
    "shasum": ""
    },
    "require": {
    "php": ">=8.3"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "5.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de",
    "role": "lead"
    }
    ],
    "description": "Simple template engine.",
    "homepage": "https://github.com/sebastianbergmann/php-text-template/",
    "keywords": [
    "template"
    ],
    "support": {
    "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
    "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
    "source": "https://github.com/sebastianbergmann/php-text-template/tree/5.0.0"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    }
    ],
    "time": "2025-02-07T04:59:16+00:00"
    },
    {
    "name": "phpunit/php-timer",
    "version": "8.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/php-timer.git",
    "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
    "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
    "shasum": ""
    },
    "require": {
    "php": ">=8.3"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "8.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de",
    "role": "lead"
    }
    ],
    "description": "Utility class for timing",
    "homepage": "https://github.com/sebastianbergmann/php-timer/",
    "keywords": [
    "timer"
    ],
    "support": {
    "issues": "https://github.com/sebastianbergmann/php-timer/issues",
    "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
    "source": "https://github.com/sebastianbergmann/php-timer/tree/8.0.0"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    }
    ],
    "time": "2025-02-07T04:59:38+00:00"
    },
    {
    "name": "phpunit/phpunit",
    "version": "12.5.12",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/phpunit.git",
    "reference": "418e06b3b46b0d54bad749ff4907fc7dfb530199"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/418e06b3b46b0d54bad749ff4907fc7dfb530199",
    "reference": "418e06b3b46b0d54bad749ff4907fc7dfb530199",
    "shasum": ""
    },
    "require": {
    "ext-dom": "*",
    "ext-json": "*",
    "ext-libxml": "*",
    "ext-mbstring": "*",
    "ext-xml": "*",
    "ext-xmlwriter": "*",
    "myclabs/deep-copy": "^1.13.4",
    "phar-io/manifest": "^2.0.4",
    "phar-io/version": "^3.2.1",
    "php": ">=8.3",
    "phpunit/php-code-coverage": "^12.5.3",
    "phpunit/php-file-iterator": "^6.0.1",
    "phpunit/php-invoker": "^6.0.0",
    "phpunit/php-text-template": "^5.0.0",
    "phpunit/php-timer": "^8.0.0",
    "sebastian/cli-parser": "^4.2.0",
    "sebastian/comparator": "^7.1.4",
    "sebastian/diff": "^7.0.0",
    "sebastian/environment": "^8.0.3",
    "sebastian/exporter": "^7.0.2",
    "sebastian/global-state": "^8.0.2",
    "sebastian/object-enumerator": "^7.0.0",
    "sebastian/recursion-context": "^7.0.1",
    "sebastian/type": "^6.0.3",
    "sebastian/version": "^6.0.0",
    "staabm/side-effects-detector": "^1.0.5"
    },
    "bin": [
    "phpunit"
    ],
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "12.5-dev"
    }
    },
    "autoload": {
    "files": [
    "src/Framework/Assert/Functions.php"
    ],
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de",
    "role": "lead"
    }
    ],
    "description": "The PHP Unit Testing framework.",
    "homepage": "https://phpunit.de/",
    "keywords": [
    "phpunit",
    "testing",
    "xunit"
    ],
    "support": {
    "issues": "https://github.com/sebastianbergmann/phpunit/issues",
    "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
    "source": "https://github.com/sebastianbergmann/phpunit/tree/12.5.12"
    },
    "funding": [
    {
    "url": "https://phpunit.de/sponsors.html",
    "type": "custom"
    },
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    },
    {
    "url": "https://liberapay.com/sebastianbergmann",
    "type": "liberapay"
    },
    {
    "url": "https://thanks.dev/u/gh/sebastianbergmann",
    "type": "thanks_dev"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
    "type": "tidelift"
    }
    ],
    "time": "2026-02-16T08:34:36+00:00"
    },
    {
    "name": "sebastian/cli-parser",
    "version": "4.2.0",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/cli-parser.git",
    "reference": "90f41072d220e5c40df6e8635f5dafba2d9d4d04"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/90f41072d220e5c40df6e8635f5dafba2d9d4d04",
    "reference": "90f41072d220e5c40df6e8635f5dafba2d9d4d04",
    "shasum": ""
    },
    "require": {
    "php": ">=8.3"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "4.2-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de",
    "role": "lead"
    }
    ],
    "description": "Library for parsing CLI options",
    "homepage": "https://github.com/sebastianbergmann/cli-parser",
    "support": {
    "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
    "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
    "source": "https://github.com/sebastianbergmann/cli-parser/tree/4.2.0"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    },
    {
    "url": "https://liberapay.com/sebastianbergmann",
    "type": "liberapay"
    },
    {
    "url": "https://thanks.dev/u/gh/sebastianbergmann",
    "type": "thanks_dev"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/sebastian/cli-parser",
    "type": "tidelift"
    }
    ],
    "time": "2025-09-14T09:36:45+00:00"
    },
    {
    "name": "sebastian/comparator",
    "version": "7.1.4",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/comparator.git",
    "reference": "6a7de5df2e094f9a80b40a522391a7e6022df5f6"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/6a7de5df2e094f9a80b40a522391a7e6022df5f6",
    "reference": "6a7de5df2e094f9a80b40a522391a7e6022df5f6",
    "shasum": ""
    },
    "require": {
    "ext-dom": "*",
    "ext-mbstring": "*",
    "php": ">=8.3",
    "sebastian/diff": "^7.0",
    "sebastian/exporter": "^7.0"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.2"
    },
    "suggest": {
    "ext-bcmath": "For comparing BcMath\\Number objects"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "7.1-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de"
    },
    {
    "name": "Jeff Welch",
    "email": "whatthejeff@gmail.com"
    },
    {
    "name": "Volker Dusch",
    "email": "github@wallbash.com"
    },
    {
    "name": "Bernhard Schussek",
    "email": "bschussek@2bepublished.at"
    }
    ],
    "description": "Provides the functionality to compare PHP values for equality",
    "homepage": "https://github.com/sebastianbergmann/comparator",
    "keywords": [
    "comparator",
    "compare",
    "equality"
    ],
    "support": {
    "issues": "https://github.com/sebastianbergmann/comparator/issues",
    "security": "https://github.com/sebastianbergmann/comparator/security/policy",
    "source": "https://github.com/sebastianbergmann/comparator/tree/7.1.4"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    },
    {
    "url": "https://liberapay.com/sebastianbergmann",
    "type": "liberapay"
    },
    {
    "url": "https://thanks.dev/u/gh/sebastianbergmann",
    "type": "thanks_dev"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
    "type": "tidelift"
    }
    ],
    "time": "2026-01-24T09:28:48+00:00"
    },
    {
    "name": "sebastian/complexity",
    "version": "5.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/complexity.git",
    "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb",
    "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb",
    "shasum": ""
    },
    "require": {
    "nikic/php-parser": "^5.0",
    "php": ">=8.3"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "5.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de",
    "role": "lead"
    }
    ],
    "description": "Library for calculating the complexity of PHP code units",
    "homepage": "https://github.com/sebastianbergmann/complexity",
    "support": {
    "issues": "https://github.com/sebastianbergmann/complexity/issues",
    "security": "https://github.com/sebastianbergmann/complexity/security/policy",
    "source": "https://github.com/sebastianbergmann/complexity/tree/5.0.0"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    }
    ],
    "time": "2025-02-07T04:55:25+00:00"
    },
    {
    "name": "sebastian/diff",
    "version": "7.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/diff.git",
    "reference": "7ab1ea946c012266ca32390913653d844ecd085f"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f",
    "reference": "7ab1ea946c012266ca32390913653d844ecd085f",
    "shasum": ""
    },
    "require": {
    "php": ">=8.3"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.0",
    "symfony/process": "^7.2"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "7.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de"
    },
    {
    "name": "Kore Nordmann",
    "email": "mail@kore-nordmann.de"
    }
    ],
    "description": "Diff implementation",
    "homepage": "https://github.com/sebastianbergmann/diff",
    "keywords": [
    "diff",
    "udiff",
    "unidiff",
    "unified diff"
    ],
    "support": {
    "issues": "https://github.com/sebastianbergmann/diff/issues",
    "security": "https://github.com/sebastianbergmann/diff/security/policy",
    "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    }
    ],
    "time": "2025-02-07T04:55:46+00:00"
    },
    {
    "name": "sebastian/environment",
    "version": "8.0.3",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/environment.git",
    "reference": "24a711b5c916efc6d6e62aa65aa2ec98fef77f68"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/24a711b5c916efc6d6e62aa65aa2ec98fef77f68",
    "reference": "24a711b5c916efc6d6e62aa65aa2ec98fef77f68",
    "shasum": ""
    },
    "require": {
    "php": ">=8.3"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.0"
    },
    "suggest": {
    "ext-posix": "*"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "8.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de"
    }
    ],
    "description": "Provides functionality to handle HHVM/PHP environments",
    "homepage": "https://github.com/sebastianbergmann/environment",
    "keywords": [
    "Xdebug",
    "environment",
    "hhvm"
    ],
    "support": {
    "issues": "https://github.com/sebastianbergmann/environment/issues",
    "security": "https://github.com/sebastianbergmann/environment/security/policy",
    "source": "https://github.com/sebastianbergmann/environment/tree/8.0.3"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    },
    {
    "url": "https://liberapay.com/sebastianbergmann",
    "type": "liberapay"
    },
    {
    "url": "https://thanks.dev/u/gh/sebastianbergmann",
    "type": "thanks_dev"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
    "type": "tidelift"
    }
    ],
    "time": "2025-08-12T14:11:56+00:00"
    },
    {
    "name": "sebastian/exporter",
    "version": "7.0.2",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/exporter.git",
    "reference": "016951ae10980765e4e7aee491eb288c64e505b7"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/016951ae10980765e4e7aee491eb288c64e505b7",
    "reference": "016951ae10980765e4e7aee491eb288c64e505b7",
    "shasum": ""
    },
    "require": {
    "ext-mbstring": "*",
    "php": ">=8.3",
    "sebastian/recursion-context": "^7.0"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "7.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de"
    },
    {
    "name": "Jeff Welch",
    "email": "whatthejeff@gmail.com"
    },
    {
    "name": "Volker Dusch",
    "email": "github@wallbash.com"
    },
    {
    "name": "Adam Harvey",
    "email": "aharvey@php.net"
    },
    {
    "name": "Bernhard Schussek",
    "email": "bschussek@gmail.com"
    }
    ],
    "description": "Provides the functionality to export PHP variables for visualization",
    "homepage": "https://www.github.com/sebastianbergmann/exporter",
    "keywords": [
    "export",
    "exporter"
    ],
    "support": {
    "issues": "https://github.com/sebastianbergmann/exporter/issues",
    "security": "https://github.com/sebastianbergmann/exporter/security/policy",
    "source": "https://github.com/sebastianbergmann/exporter/tree/7.0.2"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    },
    {
    "url": "https://liberapay.com/sebastianbergmann",
    "type": "liberapay"
    },
    {
    "url": "https://thanks.dev/u/gh/sebastianbergmann",
    "type": "thanks_dev"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
    "type": "tidelift"
    }
    ],
    "time": "2025-09-24T06:16:11+00:00"
    },
    {
    "name": "sebastian/global-state",
    "version": "8.0.2",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/global-state.git",
    "reference": "ef1377171613d09edd25b7816f05be8313f9115d"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/ef1377171613d09edd25b7816f05be8313f9115d",
    "reference": "ef1377171613d09edd25b7816f05be8313f9115d",
    "shasum": ""
    },
    "require": {
    "php": ">=8.3",
    "sebastian/object-reflector": "^5.0",
    "sebastian/recursion-context": "^7.0"
    },
    "require-dev": {
    "ext-dom": "*",
    "phpunit/phpunit": "^12.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "8.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de"
    }
    ],
    "description": "Snapshotting of global state",
    "homepage": "https://www.github.com/sebastianbergmann/global-state",
    "keywords": [
    "global state"
    ],
    "support": {
    "issues": "https://github.com/sebastianbergmann/global-state/issues",
    "security": "https://github.com/sebastianbergmann/global-state/security/policy",
    "source": "https://github.com/sebastianbergmann/global-state/tree/8.0.2"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    },
    {
    "url": "https://liberapay.com/sebastianbergmann",
    "type": "liberapay"
    },
    {
    "url": "https://thanks.dev/u/gh/sebastianbergmann",
    "type": "thanks_dev"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
    "type": "tidelift"
    }
    ],
    "time": "2025-08-29T11:29:25+00:00"
    },
    {
    "name": "sebastian/lines-of-code",
    "version": "4.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/lines-of-code.git",
    "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f",
    "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f",
    "shasum": ""
    },
    "require": {
    "nikic/php-parser": "^5.0",
    "php": ">=8.3"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "4.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de",
    "role": "lead"
    }
    ],
    "description": "Library for counting the lines of code in PHP source code",
    "homepage": "https://github.com/sebastianbergmann/lines-of-code",
    "support": {
    "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
    "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
    "source": "https://github.com/sebastianbergmann/lines-of-code/tree/4.0.0"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    }
    ],
    "time": "2025-02-07T04:57:28+00:00"
    },
    {
    "name": "sebastian/object-enumerator",
    "version": "7.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/object-enumerator.git",
    "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894",
    "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894",
    "shasum": ""
    },
    "require": {
    "php": ">=8.3",
    "sebastian/object-reflector": "^5.0",
    "sebastian/recursion-context": "^7.0"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "7.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de"
    }
    ],
    "description": "Traverses array structures and object graphs to enumerate all referenced objects",
    "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
    "support": {
    "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
    "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
    "source": "https://github.com/sebastianbergmann/object-enumerator/tree/7.0.0"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    }
    ],
    "time": "2025-02-07T04:57:48+00:00"
    },
    {
    "name": "sebastian/object-reflector",
    "version": "5.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/object-reflector.git",
    "reference": "4bfa827c969c98be1e527abd576533293c634f6a"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a",
    "reference": "4bfa827c969c98be1e527abd576533293c634f6a",
    "shasum": ""
    },
    "require": {
    "php": ">=8.3"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "5.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de"
    }
    ],
    "description": "Allows reflection of object attributes, including inherited and non-public ones",
    "homepage": "https://github.com/sebastianbergmann/object-reflector/",
    "support": {
    "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
    "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
    "source": "https://github.com/sebastianbergmann/object-reflector/tree/5.0.0"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    }
    ],
    "time": "2025-02-07T04:58:17+00:00"
    },
    {
    "name": "sebastian/recursion-context",
    "version": "7.0.1",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/recursion-context.git",
    "reference": "0b01998a7d5b1f122911a66bebcb8d46f0c82d8c"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/0b01998a7d5b1f122911a66bebcb8d46f0c82d8c",
    "reference": "0b01998a7d5b1f122911a66bebcb8d46f0c82d8c",
    "shasum": ""
    },
    "require": {
    "php": ">=8.3"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "7.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de"
    },
    {
    "name": "Jeff Welch",
    "email": "whatthejeff@gmail.com"
    },
    {
    "name": "Adam Harvey",
    "email": "aharvey@php.net"
    }
    ],
    "description": "Provides functionality to recursively process PHP variables",
    "homepage": "https://github.com/sebastianbergmann/recursion-context",
    "support": {
    "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
    "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
    "source": "https://github.com/sebastianbergmann/recursion-context/tree/7.0.1"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    },
    {
    "url": "https://liberapay.com/sebastianbergmann",
    "type": "liberapay"
    },
    {
    "url": "https://thanks.dev/u/gh/sebastianbergmann",
    "type": "thanks_dev"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
    "type": "tidelift"
    }
    ],
    "time": "2025-08-13T04:44:59+00:00"
    },
    {
    "name": "sebastian/type",
    "version": "6.0.3",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/type.git",
    "reference": "e549163b9760b8f71f191651d22acf32d56d6d4d"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/e549163b9760b8f71f191651d22acf32d56d6d4d",
    "reference": "e549163b9760b8f71f191651d22acf32d56d6d4d",
    "shasum": ""
    },
    "require": {
    "php": ">=8.3"
    },
    "require-dev": {
    "phpunit/phpunit": "^12.0"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "6.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de",
    "role": "lead"
    }
    ],
    "description": "Collection of value objects that represent the types of the PHP type system",
    "homepage": "https://github.com/sebastianbergmann/type",
    "support": {
    "issues": "https://github.com/sebastianbergmann/type/issues",
    "security": "https://github.com/sebastianbergmann/type/security/policy",
    "source": "https://github.com/sebastianbergmann/type/tree/6.0.3"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    },
    {
    "url": "https://liberapay.com/sebastianbergmann",
    "type": "liberapay"
    },
    {
    "url": "https://thanks.dev/u/gh/sebastianbergmann",
    "type": "thanks_dev"
    },
    {
    "url": "https://tidelift.com/funding/github/packagist/sebastian/type",
    "type": "tidelift"
    }
    ],
    "time": "2025-08-09T06:57:12+00:00"
    },
    {
    "name": "sebastian/version",
    "version": "6.0.0",
    "source": {
    "type": "git",
    "url": "https://github.com/sebastianbergmann/version.git",
    "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c",
    "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c",
    "shasum": ""
    },
    "require": {
    "php": ">=8.3"
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-main": "6.0-dev"
    }
    },
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Sebastian Bergmann",
    "email": "sebastian@phpunit.de",
    "role": "lead"
    }
    ],
    "description": "Library that helps with managing the version number of Git-hosted PHP projects",
    "homepage": "https://github.com/sebastianbergmann/version",
    "support": {
    "issues": "https://github.com/sebastianbergmann/version/issues",
    "security": "https://github.com/sebastianbergmann/version/security/policy",
    "source": "https://github.com/sebastianbergmann/version/tree/6.0.0"
    },
    "funding": [
    {
    "url": "https://github.com/sebastianbergmann",
    "type": "github"
    }
    ],
    "time": "2025-02-07T05:00:38+00:00"
    },
    {
    "name": "staabm/side-effects-detector",
    "version": "1.0.5",
    "source": {
    "type": "git",
    "url": "https://github.com/staabm/side-effects-detector.git",
    "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
    "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
    "shasum": ""
    },
    "require": {
    "ext-tokenizer": "*",
    "php": "^7.4 || ^8.0"
    },
    "require-dev": {
    "phpstan/extension-installer": "^1.4.3",
    "phpstan/phpstan": "^1.12.6",
    "phpunit/phpunit": "^9.6.21",
    "symfony/var-dumper": "^5.4.43",
    "tomasvotruba/type-coverage": "1.0.0",
    "tomasvotruba/unused-public": "1.0.0"
    },
    "type": "library",
    "autoload": {
    "classmap": [
    "lib/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "description": "A static analysis tool to detect side effects in PHP code",
    "keywords": [
    "static analysis"
    ],
    "support": {
    "issues": "https://github.com/staabm/side-effects-detector/issues",
    "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
    },
    "funding": [
    {
    "url": "https://github.com/staabm",
    "type": "github"
    }
    ],
    "time": "2024-10-20T05:08:20+00:00"
    },
    {
    "name": "ta-tikoma/phpunit-architecture-test",
    "version": "0.8.7",
    "source": {
    "type": "git",
    "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
    "reference": "1248f3f506ca9641d4f68cebcd538fa489754db8"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/1248f3f506ca9641d4f68cebcd538fa489754db8",
    "reference": "1248f3f506ca9641d4f68cebcd538fa489754db8",
    "shasum": ""
    },
    "require": {
    "nikic/php-parser": "^4.18.0 || ^5.0.0",
    "php": "^8.1.0",
    "phpdocumentor/reflection-docblock": "^5.3.0 || ^6.0.0",
    "phpunit/phpunit": "^10.5.5 || ^11.0.0 || ^12.0.0 || ^13.0.0",
    "symfony/finder": "^6.4.0 || ^7.0.0 || ^8.0.0"
    },
    "require-dev": {
    "laravel/pint": "^1.13.7",
    "phpstan/phpstan": "^1.10.52"
    },
    "type": "library",
    "autoload": {
    "psr-4": {
    "PHPUnit\\Architecture\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Ni Shi",
    "email": "futik0ma011@gmail.com"
    },
    {
    "name": "Nuno Maduro",
    "email": "enunomaduro@gmail.com"
    }
    ],
    "description": "Methods for testing application architecture",
    "keywords": [
    "architecture",
    "phpunit",
    "stucture",
    "test",
    "testing"
    ],
    "support": {
    "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
    "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.7"
    },
    "time": "2026-02-17T17:25:14+00:00"
    },
    {
    "name": "theseer/tokenizer",
    "version": "2.0.1",
    "source": {
    "type": "git",
    "url": "https://github.com/theseer/tokenizer.git",
    "reference": "7989e43bf381af0eac72e4f0ca5bcbfa81658be4"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/theseer/tokenizer/zipball/7989e43bf381af0eac72e4f0ca5bcbfa81658be4",
    "reference": "7989e43bf381af0eac72e4f0ca5bcbfa81658be4",
    "shasum": ""
    },
    "require": {
    "ext-dom": "*",
    "ext-tokenizer": "*",
    "ext-xmlwriter": "*",
    "php": "^8.1"
    },
    "type": "library",
    "autoload": {
    "classmap": [
    "src/"
    ]
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "BSD-3-Clause"
    ],
    "authors": [
    {
    "name": "Arne Blankerts",
    "email": "arne@blankerts.de",
    "role": "Developer"
    }
    ],
    "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
    "support": {
    "issues": "https://github.com/theseer/tokenizer/issues",
    "source": "https://github.com/theseer/tokenizer/tree/2.0.1"
    },
    "funding": [
    {
    "url": "https://github.com/theseer",
    "type": "github"
    }
    ],
    "time": "2025-12-08T11:19:18+00:00"
    },
    {
    "name": "webmozart/assert",
    "version": "2.1.6",
    "source": {
    "type": "git",
    "url": "https://github.com/webmozarts/assert.git",
    "reference": "ff31ad6efc62e66e518fbab1cde3453d389bcdc8"
    },
    "dist": {
    "type": "zip",
    "url": "https://api.github.com/repos/webmozarts/assert/zipball/ff31ad6efc62e66e518fbab1cde3453d389bcdc8",
    "reference": "ff31ad6efc62e66e518fbab1cde3453d389bcdc8",
    "shasum": ""
    },
    "require": {
    "ext-ctype": "*",
    "ext-date": "*",
    "ext-filter": "*",
    "php": "^8.2"
    },
    "suggest": {
    "ext-intl": "",
    "ext-simplexml": "",
    "ext-spl": ""
    },
    "type": "library",
    "extra": {
    "branch-alias": {
    "dev-feature/2-0": "2.0-dev"
    }
    },
    "autoload": {
    "psr-4": {
    "Webmozart\\Assert\\": "src/"
    }
    },
    "notification-url": "https://packagist.org/downloads/",
    "license": [
    "MIT"
    ],
    "authors": [
    {
    "name": "Bernhard Schussek",
    "email": "bschussek@gmail.com"
    },
    {
    "name": "Woody Gilk",
    "email": "woody.gilk@gmail.com"
    }
    ],
    "description": "Assertions to validate method input/output with nice error messages.",
    "keywords": [
    "assert",
    "check",
    "validate"
    ],
    "support": {
    "issues": "https://github.com/webmozarts/assert/issues",
    "source": "https://github.com/webmozarts/assert/tree/2.1.6"
    },
    "time": "2026-02-27T10:28:38+00:00"
    }
    ],
    "aliases": [],
    "minimum-stability": "stable",
    "stability-flags": [],
    "prefer-stable": true,
    "prefer-lowest": false,
    "platform": {
    "php": "^8.2"
    },
    "platform-dev": [],
    "plugin-api-version": "2.3.0"
    }
  • file addition: composer.json (----------)
    [2.1]
    {
    "name": "laravel-zero/laravel-zero",
    "description": "The Laravel Zero Framework.",
    "keywords": ["framework", "laravel", "laravel zero", "console", "cli"],
    "homepage": "https://laravel-zero.com",
    "type": "project",
    "license": "MIT",
    "support": {
    "issues": "https://github.com/laravel-zero/laravel-zero/issues",
    "source": "https://github.com/laravel-zero/laravel-zero"
    },
    "authors": [
    {
    "name": "Nuno Maduro",
    "email": "enunomaduro@gmail.com"
    }
    ],
    "require": {
    "php": "^8.2",
    "laravel-zero/framework": "^12.0.2"
    },
    "require-dev": {
    "laravel/pint": "^1.25.1",
    "mockery/mockery": "^1.6.12",
    "pestphp/pest": "^3.8.4|^4.1.2"
    },
    "autoload": {
    "psr-4": {
    "App\\": "app/",
    "Database\\Factories\\": "database/factories/",
    "Database\\Seeders\\": "database/seeders/"
    }
    },
    "autoload-dev": {
    "psr-4": {
    "Tests\\": "tests/"
    }
    },
    "config": {
    "preferred-install": "dist",
    "sort-packages": true,
    "optimize-autoloader": true,
    "allow-plugins": {
    "pestphp/pest-plugin": true
    }
    },
    "minimum-stability": "stable",
    "prefer-stable": true,
    "bin": ["application"]
    }
  • file addition: box.json (----------)
    [2.1]
    {
    "chmod": "0755",
    "directories": [
    "app",
    "bootstrap",
    "config",
    "vendor"
    ],
    "files": [
    "composer.json"
    ],
    "exclude-composer-files": false,
    "compression": "GZ",
    "compactors": [
    "KevinGH\\Box\\Compactor\\Php",
    "KevinGH\\Box\\Compactor\\Json"
    ]
    }
  • file addition: bootstrap (d--r------)
    [2.1]
  • file addition: providers.php (----------)
    [0.308116]
    <?php
    return [
    App\Providers\AppServiceProvider::class,
    ];
  • file addition: app.php (----------)
    [0.308116]
    <?php
    use LaravelZero\Framework\Application;
    return Application::configure(basePath: dirname(__DIR__))->create();
  • file addition: application (---r------)
    [2.1]
    #!/usr/bin/env php
    <?php
    define('LARAVEL_START', microtime(true));
    /*
    |--------------------------------------------------------------------------
    | Register The Auto Loader
    |--------------------------------------------------------------------------
    |
    | Composer provides a convenient, automatically generated class loader
    | for our application. We just need to utilize it! We'll require it
    | into the script here so that we do not have to worry about the
    | loading of any our classes "manually". Feels great to relax.
    |
    */
    $autoloader = require file_exists(__DIR__.'/vendor/autoload.php') ? __DIR__.'/vendor/autoload.php' : __DIR__.'/../../autoload.php';
    $app = require_once __DIR__.'/bootstrap/app.php';
    /*
    |--------------------------------------------------------------------------
    | Run The Artisan Application
    |--------------------------------------------------------------------------
    |
    | When we run the console application, the current CLI command will be
    | executed in this console and the response sent back to a terminal
    | or another output device for the developers. Here goes nothing!
    |
    */
    $kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
    $status = $kernel->handle(
    $input = new Symfony\Component\Console\Input\ArgvInput,
    new Symfony\Component\Console\Output\ConsoleOutput
    );
    /*
    |--------------------------------------------------------------------------
    | Shutdown The Application
    |--------------------------------------------------------------------------
    |
    | Once Artisan has finished running, we will fire off the shutdown events
    | so that any final work may be done by the application before we shut
    | down the process. This is the last thing to happen to the request.
    |
    */
    $kernel->terminate($input, $status);
    exit($status);
  • file addition: app (d--r------)
    [2.1]
  • file addition: Providers (d--r------)
    [0.310204]
  • file addition: AppServiceProvider.php (----------)
    [0.310227]
    <?php
    namespace App\Providers;
    use Illuminate\Support\ServiceProvider;
    class AppServiceProvider extends ServiceProvider
    {
    /**
    * Bootstrap any application services.
    */
    public function boot(): void
    {
    //
    }
    /**
    * Register any application services.
    */
    public function register(): void
    {
    //
    }
    }
  • file addition: Commands (d--r------)
    [0.310204]
  • file addition: InspireCommand.php (----------)
    [0.310659]
    <?php
    namespace App\Commands;
    use Illuminate\Console\Scheduling\Schedule;
    use LaravelZero\Framework\Commands\Command;
    use function Termwind\render;
    class InspireCommand extends Command
    {
    /**
    * The signature of the command.
    *
    * @var string
    */
    protected $signature = 'inspire {name=Artisan}';
    /**
    * The description of the command.
    *
    * @var string
    */
    protected $description = 'Display an inspiring quote';
    /**
    * Execute the console command.
    */
    public function handle(): void
    {
    render(<<<'HTML'
    <div class="py-1 ml-2">
    <div class="px-1 bg-blue-300 text-black">Laravel Zero</div>
    <em class="ml-1">
    Simplicity is the ultimate sophistication.
    </em>
    </div>
    HTML);
    }
    /**
    * Define the command's schedule.
    */
    public function schedule(Schedule $schedule): void
    {
    // $schedule->command(static::class)->everyMinute();
    }
    }
  • file addition: README.md (----------)
    [2.1]
    <p align="center">
    <img title="Laravel Zero" height="100" src="https://raw.githubusercontent.com/laravel-zero/docs/master/images/logo/laravel-zero-readme.png" alt="Laravel Zero Logo" />
    </p>
    <p align="center">
    <a href="https://github.com/laravel-zero/framework/actions"><img src="https://github.com/laravel-zero/laravel-zero/actions/workflows/tests.yml/badge.svg" alt="Build Status" /></a>
    <a href="https://packagist.org/packages/laravel-zero/framework"><img src="https://img.shields.io/packagist/dt/laravel-zero/framework.svg" alt="Total Downloads" /></a>
    <a href="https://packagist.org/packages/laravel-zero/framework"><img src="https://img.shields.io/packagist/v/laravel-zero/framework.svg?label=stable" alt="Latest Stable Version" /></a>
    <a href="https://packagist.org/packages/laravel-zero/framework"><img src="https://img.shields.io/packagist/l/laravel-zero/framework.svg" alt="License" /></a>
    </p>
    Laravel Zero was created by [Nuno Maduro](https://github.com/nunomaduro) and [Owen Voke](https://github.com/owenvoke), and is a micro-framework that provides an elegant starting point for your console application. It is an **unofficial** and customized version of Laravel optimized for building command-line applications.
    - Built on top of the [Laravel](https://laravel.com) components.
    - Optional installation of Laravel [Eloquent](https://laravel-zero.com/docs/database/), Laravel [Logging](https://laravel-zero.com/docs/logging/) and many others.
    - Supports interactive [menus](https://laravel-zero.com/docs/build-interactive-menus/) and [desktop notifications](https://laravel-zero.com/docs/send-desktop-notifications/) on Linux, Windows & MacOS.
    - Ships with a [Scheduler](https://laravel-zero.com/docs/task-scheduling/) and a [Standalone Compiler](https://laravel-zero.com/docs/build-a-standalone-application/).
    - Integration with [Collision](https://github.com/nunomaduro/collision) - Beautiful error reporting
    - Follow the creator Nuno Maduro:
    - YouTube: **[youtube.com/@nunomaduro](https://www.youtube.com/@nunomaduro)** — Videos every weekday
    - Twitch: **[twitch.tv/enunomaduro](https://www.twitch.tv/enunomaduro)** — Streams (almost) every weekday
    - Twitter / X: **[x.com/enunomaduro](https://x.com/enunomaduro)**
    - LinkedIn: **[linkedin.com/in/nunomaduro](https://www.linkedin.com/in/nunomaduro)**
    - Instagram: **[instagram.com/enunomaduro](https://www.instagram.com/enunomaduro)**
    - Tiktok: **[tiktok.com/@enunomaduro](https://www.tiktok.com/@enunomaduro)**
    ------
    ## Documentation
    For full documentation, visit [laravel-zero.com](https://laravel-zero.com/).
    ## Support the development
    **Do you like this project? Support it by donating**
    - PayPal: [Donate](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L)
    - Patreon: [Donate](https://www.patreon.com/nunomaduro)
    ## License
    Laravel Zero is an open-source software licensed under the MIT license.
  • file addition: .ignore (----------)
    [2.1]
    .git
    .DS_Store
    vendor/*