2018-04-15 23:56:48 +00:00
|
|
|
{
|
2021-05-08 03:37:10 +00:00
|
|
|
"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": {
|
2024-02-19 01:00:43 +00:00
|
|
|
"php": "^8.1|^8.2|^8.3",
|
2021-05-08 03:37:10 +00:00
|
|
|
"ext-bcmath": "*",
|
|
|
|
"ext-ctype": "*",
|
|
|
|
"ext-curl": "*",
|
|
|
|
"ext-intl": "*",
|
|
|
|
"ext-json": "*",
|
|
|
|
"ext-mbstring": "*",
|
|
|
|
"ext-openssl": "*",
|
2022-03-09 04:45:05 +00:00
|
|
|
"bacon/bacon-qr-code": "^2.0.3",
|
2022-06-26 18:28:37 +00:00
|
|
|
"beyondcode/laravel-websockets": "^1.13",
|
2022-05-21 05:49:51 +00:00
|
|
|
"brick/math": "^0.9.3",
|
2024-03-05 13:00:37 +00:00
|
|
|
"buzz/laravel-h-captcha": "^1.0.4",
|
2023-04-20 04:41:26 +00:00
|
|
|
"doctrine/dbal": "^3.0",
|
2021-05-08 03:37:10 +00:00
|
|
|
"intervention/image": "^2.4",
|
|
|
|
"jenssegers/agent": "^2.6",
|
2023-12-04 05:18:38 +00:00
|
|
|
"laravel-notification-channels/webpush": "^7.1",
|
2023-04-20 04:41:26 +00:00
|
|
|
"laravel/framework": "^10.0",
|
2021-05-08 03:37:10 +00:00
|
|
|
"laravel/helpers": "^1.1",
|
|
|
|
"laravel/horizon": "^5.0",
|
2023-04-20 04:41:26 +00:00
|
|
|
"laravel/passport": "^11.0",
|
2021-05-08 03:37:10 +00:00
|
|
|
"laravel/tinker": "^2.0",
|
2023-04-20 04:41:26 +00:00
|
|
|
"laravel/ui": "^4.2",
|
2022-11-08 01:41:25 +00:00
|
|
|
"league/flysystem-aws-s3-v3": "^3.0",
|
2021-12-15 05:59:31 +00:00
|
|
|
"league/iso3166": "^2.1|^4.0",
|
2022-11-08 01:41:25 +00:00
|
|
|
"pbmedia/laravel-ffmpeg": "^8.0",
|
2021-05-08 03:37:10 +00:00
|
|
|
"phpseclib/phpseclib": "~2.0",
|
|
|
|
"pixelfed/fractal": "^0.18.0",
|
|
|
|
"pixelfed/laravel-snowflake": "^2.0",
|
2022-11-08 01:41:25 +00:00
|
|
|
"pixelfed/zttp": "^0.5",
|
2022-03-09 04:45:05 +00:00
|
|
|
"pragmarx/google2fa": "^8.0",
|
2022-12-02 04:51:02 +00:00
|
|
|
"predis/predis": "^2.0",
|
2022-11-08 01:41:25 +00:00
|
|
|
"spatie/laravel-backup": "^8.0.0",
|
|
|
|
"spatie/laravel-image-optimizer": "^1.7",
|
2023-04-20 04:41:26 +00:00
|
|
|
"stevebauman/purify": "6.0.*",
|
2022-11-08 01:41:25 +00:00
|
|
|
"symfony/http-client": "^6.1",
|
|
|
|
"symfony/http-kernel": "^6.0.0",
|
|
|
|
"symfony/mailgun-mailer": "^6.1"
|
2021-05-08 03:37:10 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
|
|
|
"brianium/paratest": "^6.1",
|
2022-12-02 04:51:02 +00:00
|
|
|
"fakerphp/faker": "^1.20",
|
2024-03-05 13:00:37 +00:00
|
|
|
"laravel/pint": "^1.14",
|
2023-04-20 04:56:38 +00:00
|
|
|
"laravel/telescope": "^4.14",
|
2021-05-08 03:37:10 +00:00
|
|
|
"mockery/mockery": "^1.0",
|
2022-11-08 01:41:25 +00:00
|
|
|
"nunomaduro/collision": "^6.1",
|
2021-05-08 03:37:10 +00:00
|
|
|
"phpunit/phpunit": "^9.0"
|
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"classmap": [
|
|
|
|
"database/seeds",
|
|
|
|
"database/factories"
|
|
|
|
],
|
|
|
|
"psr-4": {
|
|
|
|
"App\\": "app/"
|
2021-05-12 05:56:33 +00:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"app/helpers.php"
|
|
|
|
]
|
2021-05-08 03:37:10 +00:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Tests\\": "tests/"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"app/helpers.php"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"laravel": {
|
|
|
|
"dont-discover": [
|
2022-03-25 03:42:58 +00:00
|
|
|
"laravel/passport"
|
2021-05-08 03:37:10 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"post-root-package-install": [
|
|
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
|
|
],
|
|
|
|
"post-create-project-cmd": [
|
|
|
|
"@php artisan key:generate --ansi"
|
|
|
|
],
|
|
|
|
"post-autoload-dump": [
|
|
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
|
|
"@php artisan package:discover --ansi"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"preferred-install": "dist",
|
|
|
|
"sort-packages": true,
|
|
|
|
"optimize-autoloader": true
|
|
|
|
},
|
|
|
|
"prefer-stable": true
|
2018-04-15 23:56:48 +00:00
|
|
|
}
|