{
    "name": "plank/laravel-mediable",
    "description": "A package for easily uploading and attaching media files to models with Laravel",
    "keywords": [
        "media",
        "image",
        "uploader",
        "eloquent",
        "laravel"
    ],
    "license": "MIT",
    "authors": [
        {
            "name": "Sean Fraser",
            "email": "sean@plankdesign.com"
        }
    ],
    "require": {
        "php": ">=8.3.0",
        "ext-fileinfo": "*",
        "guzzlehttp/guzzle": "^7.9.1",
        "guzzlehttp/psr7": "^2.7",
        "illuminate/database": "^12.0|^13.0",
        "illuminate/filesystem": "^12.0|^13.0",
        "illuminate/support": "^12.0|^13.0",
        "intervention/image": "^2.7.1|^3.9.1",
        "league/flysystem": "^3.29.1",
        "symfony/http-foundation": "^6.0.3|^7.2",
        "symfony/mime": "^6.0|^7.2",
        "spatie/image-optimizer": "^1.8"
    },
    "require-dev": {
        "aws/aws-sdk-php": "^3.340.0",
        "doctrine/dbal": "^3.9.3",
        "guzzlehttp/promises": "^1.5.1|^2.0",
        "laravel/legacy-factories": "^1.4.0",
        "league/flysystem-aws-s3-v3": "^3.29.0",
        "mockery/mockery": "^1.6.12",
        "orchestra/testbench": "^10.0|^11.0",
        "php-coveralls/php-coveralls": "^2.7.0",
        "phpunit/phpunit": "^12",
        "vlucas/phpdotenv": "^5.6.1",
        "phpstan/phpstan": "^2.0.3"
    },
    "autoload": {
        "psr-4": {
            "Plank\\Mediable\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Plank\\Mediable\\Tests\\": "tests/"
        },
        "classmap": [
            "migrations/"
        ]
    },
    "suggest": {
        "intervention/image-laravel": "Laravel bindings for the intervention/image package used for image manipulation"
    },
    "minimum-stability": "stable",
    "prefer-stable": true,
    "extra": {
        "laravel": {
            "providers": [
                "Plank\\Mediable\\MediableServiceProvider"
            ],
            "aliases": {
                "MediaUploader": "Plank\\Mediable\\Facades\\MediaUploader",
                "ImageManipulator": "Plank\\Mediable\\Facades\\ImageManipulator"
            }
        }
    }
}
