91 lines
2.6 KiB
JSON
91 lines
2.6 KiB
JSON
{
|
|
"name": "spatie/laravel-medialibrary",
|
|
"description": "Associate files with Eloquent models",
|
|
"keywords": [
|
|
"spatie",
|
|
"laravel-medialibrary",
|
|
"media",
|
|
"conversion",
|
|
"images",
|
|
"downloads",
|
|
"cms",
|
|
"laravel"
|
|
],
|
|
"homepage": "https://github.com/spatie/laravel-medialibrary",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Freek Van der Herten",
|
|
"email": "freek@spatie.be",
|
|
"homepage": "https://spatie.be",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.4|^8.0",
|
|
"ext-exif": "*",
|
|
"ext-fileinfo": "*",
|
|
"ext-json": "*",
|
|
"illuminate/bus": "^8.71",
|
|
"illuminate/console": "^8.71",
|
|
"illuminate/database": "^8.71",
|
|
"illuminate/pipeline": "^8.71",
|
|
"illuminate/support": "^8.71",
|
|
"intervention/image": "^2.7",
|
|
"league/flysystem": "^1.0.64",
|
|
"league/glide": "^1.7",
|
|
"maennchen/zipstream-php": "^1.0|^2.0",
|
|
"spatie/image": "^1.0.0",
|
|
"spatie/temporary-directory": "^1.1|^2.0",
|
|
"symfony/console": "^4.4|^5.0"
|
|
},
|
|
"require-dev": {
|
|
"ext-pdo_sqlite": "*",
|
|
"ext-zip": "*",
|
|
"aws/aws-sdk-php": "^3.133.11",
|
|
"doctrine/dbal": "^2.12",
|
|
"guzzlehttp/guzzle": "^7.0",
|
|
"league/flysystem-aws-s3-v3": "^1.0.23",
|
|
"mockery/mockery": "^1.4",
|
|
"orchestra/testbench": "^5.20|^6.23",
|
|
"phpunit/phpunit": "^9.3",
|
|
"spatie/laravel-ray": "^1.24",
|
|
"spatie/pdf-to-image": "^2.1",
|
|
"spatie/phpunit-snapshot-assertions": "^4.0"
|
|
},
|
|
"conflict": {
|
|
"php-ffmpeg/php-ffmpeg": "<0.6.1"
|
|
},
|
|
"suggest": {
|
|
"league/flysystem-aws-s3-v3": "Required to use AWS S3 file storage",
|
|
"php-ffmpeg/php-ffmpeg": "Required for generating video thumbnails",
|
|
"spatie/pdf-to-image": "Required for generating thumbsnails of PDFs and SVGs"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Spatie\\MediaLibrary\\": "src"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
|
|
"test": "vendor/bin/phpunit"
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Spatie\\MediaLibrary\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Spatie\\MediaLibrary\\MediaLibraryServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true
|
|
}
|