mirror of https://github.com/pixelfed/pixelfed.git
84 lines
2.6 KiB
JSON
84 lines
2.6 KiB
JSON
{
|
|
"name": "pixelfed/pixelfed",
|
|
"description": "Open and ethical photo sharing platform, powered by ActivityPub federation.",
|
|
"keywords": ["framework", "laravel", "pixelfed", "activitypub", "social", "network", "federation"],
|
|
"license": "AGPL-3.0-only",
|
|
"type": "project",
|
|
"require": {
|
|
"php": "^7.1.3",
|
|
"beyondcode/laravel-self-diagnosis": "^1.0.2",
|
|
"bitverse/identicon": "^1.1",
|
|
"doctrine/dbal": "^2.7",
|
|
"fideloper/proxy": "^4.0",
|
|
"greggilbert/recaptcha": "dev-master",
|
|
"intervention/image": "^2.4",
|
|
"laravel/framework": "5.7.*",
|
|
"laravel/horizon": "^1.2",
|
|
"laravel/passport": "^7.0",
|
|
"laravel/tinker": "^1.0",
|
|
"league/flysystem-aws-s3-v3": "~1.0",
|
|
"league/flysystem-cached-adapter": "~1.0",
|
|
"moontoast/math": "^1.1",
|
|
"phpseclib/phpseclib": "~2.0",
|
|
"pbmedia/laravel-ffmpeg": "3.0.0",
|
|
"pixelfed/bacon-qr-code": "^3.0",
|
|
"pixelfed/dotenv-editor": "^2.0",
|
|
"pixelfed/fractal": "^0.18.0",
|
|
"pixelfed/google2fa": "^4.0",
|
|
"pixelfed/http-signatures-guzzlehttp": "^4.0",
|
|
"pixelfed/zttp": "^0.4",
|
|
"predis/predis": "^1.1",
|
|
"spatie/laravel-backup": "^5.0.0",
|
|
"spatie/laravel-image-optimizer": "^1.1",
|
|
"stevebauman/purify": "2.0.*"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-debugbar": "^3.1",
|
|
"beyondcode/laravel-er-diagram-generator": "^0.2.2",
|
|
"filp/whoops": "^2.0",
|
|
"fzaninotto/faker": "^1.4",
|
|
"mockery/mockery": "^1.0",
|
|
"nunomaduro/collision": "^2.0",
|
|
"phpunit/phpunit": "^7.0"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"database/seeds",
|
|
"database/factories"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": [
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate"
|
|
],
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|