2015-07-12 15:01:42 -04:00
|
|
|
{
|
2017-11-19 10:56:06 -05:00
|
|
|
"name": "bookstackapp/bookstack",
|
2015-11-30 16:53:45 -05:00
|
|
|
"description": "BookStack documentation platform",
|
2021-10-26 17:04:18 -04:00
|
|
|
"keywords": [
|
|
|
|
"BookStack",
|
|
|
|
"Documentation"
|
|
|
|
],
|
2015-07-12 15:01:42 -04:00
|
|
|
"license": "MIT",
|
|
|
|
"type": "project",
|
|
|
|
"require": {
|
2024-03-12 07:29:51 -04:00
|
|
|
"php": "^8.1.0",
|
2019-09-14 09:12:39 -04:00
|
|
|
"ext-curl": "*",
|
|
|
|
"ext-dom": "*",
|
2021-06-05 19:51:06 -04:00
|
|
|
"ext-fileinfo": "*",
|
2019-09-14 09:12:39 -04:00
|
|
|
"ext-gd": "*",
|
2018-12-12 15:46:27 -05:00
|
|
|
"ext-json": "*",
|
2019-09-14 09:12:39 -04:00
|
|
|
"ext-mbstring": "*",
|
2018-12-22 11:49:09 -05:00
|
|
|
"ext-xml": "*",
|
2021-06-28 17:02:45 -04:00
|
|
|
"bacon/bacon-qr-code": "^2.0",
|
2022-07-17 09:01:59 -04:00
|
|
|
"barryvdh/laravel-dompdf": "^2.0",
|
2022-02-24 09:30:55 -05:00
|
|
|
"barryvdh/laravel-snappy": "^1.0",
|
2023-02-06 11:58:29 -05:00
|
|
|
"doctrine/dbal": "^3.5",
|
2021-10-30 16:29:59 -04:00
|
|
|
"guzzlehttp/guzzle": "^7.4",
|
2021-10-26 17:04:18 -04:00
|
|
|
"intervention/image": "^2.7",
|
2024-03-16 11:12:14 -04:00
|
|
|
"laravel/framework": "^10.10",
|
2023-12-22 10:48:46 -05:00
|
|
|
"laravel/socialite": "^5.10",
|
2024-03-16 11:12:14 -04:00
|
|
|
"laravel/tinker": "^2.8",
|
2023-02-06 11:58:29 -05:00
|
|
|
"league/commonmark": "^2.3",
|
|
|
|
"league/flysystem-aws-s3-v3": "^3.0",
|
2021-06-22 16:02:18 -04:00
|
|
|
"league/html-to-markdown": "^5.0.0",
|
2021-10-12 18:00:52 -04:00
|
|
|
"league/oauth2-client": "^2.6",
|
2021-03-20 11:35:39 -04:00
|
|
|
"onelogin/php-saml": "^4.0",
|
2023-02-06 11:58:29 -05:00
|
|
|
"phpseclib/phpseclib": "^3.0",
|
2021-06-28 17:02:45 -04:00
|
|
|
"pragmarx/google2fa": "^8.0",
|
2023-02-07 06:50:59 -05:00
|
|
|
"predis/predis": "^2.1",
|
2020-12-13 10:07:58 -05:00
|
|
|
"socialiteproviders/discord": "^4.1",
|
|
|
|
"socialiteproviders/gitlab": "^4.1",
|
2023-02-06 11:58:29 -05:00
|
|
|
"socialiteproviders/microsoft-azure": "^5.1",
|
|
|
|
"socialiteproviders/okta": "^4.2",
|
2020-12-13 10:07:58 -05:00
|
|
|
"socialiteproviders/twitch": "^5.3",
|
2023-12-09 05:05:23 -05:00
|
|
|
"ssddanbrown/htmldiff": "^1.0.2",
|
|
|
|
"ssddanbrown/symfony-mailer": "6.0.x-dev"
|
2015-07-12 15:01:42 -04:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2023-02-06 11:58:29 -05:00
|
|
|
"fakerphp/faker": "^1.21",
|
2021-10-30 17:03:36 -04:00
|
|
|
"itsgoingd/clockwork": "^5.1",
|
2023-02-06 11:58:29 -05:00
|
|
|
"mockery/mockery": "^1.5",
|
2024-03-17 11:41:11 -04:00
|
|
|
"nunomaduro/collision": "^7.0",
|
2023-12-09 05:05:23 -05:00
|
|
|
"larastan/larastan": "^2.7",
|
2024-03-17 11:41:11 -04:00
|
|
|
"phpunit/phpunit": "^10.0",
|
2022-09-17 20:25:20 -04:00
|
|
|
"squizlabs/php_codesniffer": "^3.7",
|
2024-03-17 11:41:11 -04:00
|
|
|
"ssddanbrown/asserthtml": "^3.0"
|
2015-07-12 15:01:42 -04:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2021-10-30 16:29:59 -04:00
|
|
|
"BookStack\\": "app/",
|
|
|
|
"Database\\Factories\\": "database/factories/",
|
|
|
|
"Database\\Seeders\\": "database/seeders/"
|
2020-10-31 19:05:48 -04:00
|
|
|
},
|
2021-10-26 17:04:18 -04:00
|
|
|
"files": [
|
2023-05-17 12:56:55 -04:00
|
|
|
"app/App/helpers.php"
|
2021-10-26 17:04:18 -04:00
|
|
|
]
|
2015-07-12 15:01:42 -04:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
2017-02-04 06:58:42 -05:00
|
|
|
"psr-4": {
|
|
|
|
"Tests\\": "tests/"
|
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
},
|
|
|
|
"scripts": {
|
2022-09-18 09:50:25 -04:00
|
|
|
"check-static": "phpstan --memory-limit=2g",
|
2022-09-17 20:56:45 -04:00
|
|
|
"format": "phpcbf",
|
|
|
|
"lint": "phpcs",
|
|
|
|
"test": "phpunit",
|
2022-09-26 20:27:51 -04:00
|
|
|
"t-reset": "@php artisan test --recreate-databases",
|
2021-10-30 16:29:59 -04:00
|
|
|
"post-autoload-dump": [
|
|
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
|
|
"@php artisan package:discover --ansi"
|
|
|
|
],
|
2016-09-17 13:22:04 -04:00
|
|
|
"post-root-package-install": [
|
2019-09-06 18:36:16 -04:00
|
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
2016-09-17 13:22:04 -04:00
|
|
|
],
|
|
|
|
"post-create-project-cmd": [
|
2019-09-06 18:36:16 -04:00
|
|
|
"@php artisan key:generate --ansi"
|
2016-09-17 13:22:04 -04:00
|
|
|
],
|
2017-02-27 11:48:36 -05:00
|
|
|
"pre-install-cmd": [
|
2020-12-13 10:07:58 -05:00
|
|
|
"@php -r \"!file_exists('bootstrap/cache/services.php') || @unlink('bootstrap/cache/services.php');\""
|
2017-02-27 11:48:36 -05:00
|
|
|
],
|
2015-07-12 15:01:42 -04:00
|
|
|
"post-install-cmd": [
|
2019-09-06 18:36:16 -04:00
|
|
|
"@php artisan cache:clear",
|
|
|
|
"@php artisan view:clear"
|
2015-07-12 15:01:42 -04:00
|
|
|
],
|
2017-04-22 09:08:12 -04:00
|
|
|
"refresh-test-database": [
|
2019-09-06 18:36:16 -04:00
|
|
|
"@php artisan migrate:refresh --database=mysql_testing",
|
|
|
|
"@php artisan db:seed --class=DummyContentSeeder --database=mysql_testing"
|
2015-07-12 15:01:42 -04:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"config": {
|
2017-11-19 12:59:12 -05:00
|
|
|
"optimize-autoloader": true,
|
2017-11-19 10:56:06 -05:00
|
|
|
"preferred-install": "dist",
|
2019-09-06 18:36:16 -04:00
|
|
|
"sort-packages": true,
|
2017-12-04 12:59:53 -05:00
|
|
|
"platform": {
|
2024-03-12 07:29:51 -04:00
|
|
|
"php": "8.1.0"
|
2017-12-04 12:59:53 -05:00
|
|
|
}
|
2019-09-06 17:14:39 -04:00
|
|
|
},
|
2019-09-06 18:36:16 -04:00
|
|
|
"extra": {
|
|
|
|
"laravel": {
|
|
|
|
"dont-discover": []
|
|
|
|
}
|
|
|
|
},
|
2023-02-06 11:58:29 -05:00
|
|
|
"minimum-stability": "stable",
|
2019-09-06 17:14:39 -04:00
|
|
|
"prefer-stable": true
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|