{
    "name": "laravel/laravel",
    "type": "project",
    "description": "The Laravel Framework.",
    "keywords": [
        "framework",
        "laravel"
    ],
    "license": "MIT",
    "require": {
        "php": "^8.0.2",
        "ext-gd": "*",
        "ext-json": "*",
        "fruitcake/laravel-cors": "^2.0",
        "guzzlehttp/guzzle": "^7.2",
        "intervention/image": "^2.5",
        "laravel/framework": "^9.19",
        "laravel/sanctum": "^2.12",
        "laravel/telescope": "^5.2",
        "laravel/tinker": "^2.0",
        "livewire/livewire": "^2.10",
        "maatwebsite/excel": "^3.1",
        "mpdf/mpdf": "^8.2",
        "php-mqtt/client": "^2.3",
        "psr/simple-cache": "1.0",
        "simplesoftwareio/simple-qrcode": "^4.2",
        "spatie/laravel-translatable": "^6.11",
        "tecnickcom/tcpdf": "^6.9"
    },
    "require-dev": {
        "fakerphp/faker": "^1.21",
        "spatie/laravel-ignition": "^1.0",
        "mockery/mockery": "^1.3.1",
        "nunomaduro/collision": "^6.1",
        "phpunit/phpunit": "^9.5"
    },
    "config": {
        "optimize-autoloader": true,
        "preferred-install": "dist",
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "dont-discover": []
        }
    },
    "autoload": {
        "psr-4": {
            "App\\": "app/",
            "Database\\Factories\\": "database/factories/",
            "Database\\Seeders\\": "database/seeders/"
        },
        
        "files": [
            "app/Helpers/helper.php"
        ]
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/",
            "Illuminate\\Routing\\": "app\\Overrides\\"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "scripts": {
        "test": "php artisan test",
        "test:web": "php artisan test --testsuite=Feature-Web,Unit-Web",
        "test:api": "php artisan test --testsuite=Feature-Api,Unit-Api",
        "test:landing": "php artisan test --testsuite=Feature-Landing,Unit-Landing",
        "test:common": "php artisan test --testsuite=Unit-Common",
        "test:coverage": "php artisan test --coverage-clover=coverage/clover.xml --coverage-html=coverage/html",
        "test:unit": "php artisan test --testsuite=Unit-Web,Unit-Api,Unit-Landing,Unit-Common",
        "test:feature": "php artisan test --testsuite=Feature-Web,Feature-Api,Feature-Landing",
        "post-autoload-dump": [
            "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
            "@php artisan package:discover --ansi"
        ],
        "post-root-package-install": [
            "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
        ],
        "post-create-project-cmd": [
            "@php artisan key:generate --ansi"
        ]
    }
}
