pixelfed/composer.json

94 lines
2.8 KiB
JSON
Raw Normal View History

2018-04-15 23:56:48 +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",
2018-04-15 23:56:48 +00:00
"type": "project",
"require": {
2020-12-13 21:15:30 +00:00
"php": "^7.3",
"ext-bcmath": "*",
"ext-ctype": "*",
"ext-curl": "*",
2019-09-30 04:36:10 +00:00
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
2018-10-23 19:02:29 +00:00
"beyondcode/laravel-self-diagnosis": "^1.0.2",
2020-05-29 07:01:32 +00:00
"brick/math": "^0.8",
2020-12-13 04:04:59 +00:00
"buzz/laravel-h-captcha": "1.0.2",
"doctrine/dbal": "^2.7",
2018-04-15 23:56:48 +00:00
"fideloper/proxy": "^4.0",
2020-06-12 00:39:03 +00:00
"fruitcake/laravel-cors": "^2.0",
2018-05-20 03:05:04 +00:00
"intervention/image": "^2.4",
2019-04-15 18:56:45 +00:00
"jenssegers/agent": "^2.6",
2020-12-13 21:15:30 +00:00
"laravel/framework": "^8.0",
2019-11-11 02:30:00 +00:00
"laravel/helpers": "^1.1",
2020-12-13 21:15:30 +00:00
"laravel/horizon": "^5.0",
"laravel/passport": "^10.0",
2020-05-29 07:01:32 +00:00
"laravel/tinker": "^2.0",
"laravel/ui": "^2.0",
2018-09-09 01:06:28 +00:00
"league/flysystem-aws-s3-v3": "~1.0",
"league/flysystem-cached-adapter": "~1.0",
2019-08-08 06:12:23 +00:00
"league/iso3166": "^2.1",
2020-05-29 07:01:32 +00:00
"pbmedia/laravel-ffmpeg": "^7.0",
2019-02-26 19:30:33 +00:00
"phpseclib/phpseclib": "~2.0",
2020-12-15 05:30:44 +00:00
"bacon/bacon-qr-code": "^2.0.3",
2018-07-18 00:14:07 +00:00
"pixelfed/fractal": "^0.18.0",
2020-12-15 05:30:44 +00:00
"pragmarx/google2fa": "^8.0",
2019-03-12 05:21:43 +00:00
"pixelfed/laravel-snowflake": "^2.0",
2018-09-03 06:56:37 +00:00
"pixelfed/zttp": "^0.4",
2018-05-20 03:05:04 +00:00
"predis/predis": "^1.1",
2019-02-27 19:25:28 +00:00
"spatie/laravel-backup": "^6.0.0",
2018-05-20 03:05:04 +00:00
"spatie/laravel-image-optimizer": "^1.1",
2020-12-13 04:04:59 +00:00
"stevebauman/purify": "3.0.*",
"symfony/http-kernel": "5.1.5"
2018-04-15 23:56:48 +00:00
},
"require-dev": {
2021-01-27 04:16:44 +00:00
"brianium/paratest": "^6.1",
2020-12-13 21:15:30 +00:00
"facade/ignition": "^2.3.6",
2018-04-15 23:56:48 +00:00
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
2020-12-13 21:15:30 +00:00
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.0"
2018-04-15 23:56:48 +00:00
},
"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": [
2019-03-01 04:53:21 +00:00
"@php artisan key:generate --ansi"
2018-04-15 23:56:48 +00:00
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
2019-03-01 04:53:21 +00:00
"@php artisan package:discover --ansi"
2018-04-15 23:56:48 +00:00
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}