1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-04 10:39:08 +00:00
pixelfed/composer.json

88 lines
2.6 KiB
JSON
Raw Normal View History

2018-04-15 17:56:48 -06: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 17:56:48 -06:00
"type": "project",
"require": {
"php": "^7.1.3",
"ext-bcmath": "*",
"ext-ctype": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
2018-10-23 13:02:29 -06:00
"beyondcode/laravel-self-diagnosis": "^1.0.2",
2018-05-19 21:05:04 -06:00
"bitverse/identicon": "^1.1",
"doctrine/dbal": "^2.7",
2018-04-15 17:56:48 -06:00
"fideloper/proxy": "^4.0",
2018-06-01 11:58:43 -06:00
"greggilbert/recaptcha": "dev-master",
2018-05-19 21:05:04 -06:00
"intervention/image": "^2.4",
2019-02-27 12:25:28 -07:00
"laravel/framework": "5.8.*",
2019-02-28 21:53:21 -07:00
"laravel/horizon": "^3.0",
2018-10-23 13:02:29 -06:00
"laravel/passport": "^7.0",
2018-04-15 21:45:19 -06:00
"laravel/tinker": "^1.0",
2018-09-08 19:06:28 -06:00
"league/flysystem-aws-s3-v3": "~1.0",
"league/flysystem-cached-adapter": "~1.0",
2018-07-17 18:14:07 -06:00
"moontoast/math": "^1.1",
2019-02-27 12:25:28 -07:00
"pbmedia/laravel-ffmpeg": "4.0.0",
2019-02-26 12:30:33 -07:00
"phpseclib/phpseclib": "~2.0",
2018-09-03 00:56:37 -06:00
"pixelfed/bacon-qr-code": "^3.0",
2018-07-17 18:14:07 -06:00
"pixelfed/dotenv-editor": "^2.0",
"pixelfed/fractal": "^0.18.0",
2018-09-03 00:56:37 -06:00
"pixelfed/google2fa": "^4.0",
2019-03-11 23:21:43 -06:00
"pixelfed/laravel-snowflake": "^2.0",
2018-09-03 00:56:37 -06:00
"pixelfed/zttp": "^0.4",
2018-05-19 21:05:04 -06:00
"predis/predis": "^1.1",
2019-02-27 12:25:28 -07:00
"spatie/laravel-backup": "^6.0.0",
2018-05-19 21:05:04 -06:00
"spatie/laravel-image-optimizer": "^1.1",
2018-10-23 13:02:29 -06:00
"stevebauman/purify": "2.0.*"
2018-04-15 17:56:48 -06:00
},
"require-dev": {
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
2019-02-28 21:53:21 -07:00
"phpunit/phpunit": "^7.5"
2018-04-15 17:56:48 -06: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-02-28 21:53:21 -07:00
"@php artisan key:generate --ansi"
2018-04-15 17:56:48 -06:00
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
2019-02-28 21:53:21 -07:00
"@php artisan package:discover --ansi"
2018-04-15 17:56:48 -06:00
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}