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