2015-07-13 03:01:42 +08:00
|
|
|
{
|
2017-11-19 23:56:06 +08:00
|
|
|
"name": "bookstackapp/bookstack",
|
2015-12-01 05:53:45 +08:00
|
|
|
"description": "BookStack documentation platform",
|
|
|
|
"keywords": ["BookStack", "Documentation"],
|
2015-07-13 03:01:42 +08:00
|
|
|
"license": "MIT",
|
|
|
|
"type": "project",
|
|
|
|
"require": {
|
2018-12-23 00:49:09 +08:00
|
|
|
"php": ">=7.0.5",
|
2018-12-13 04:46:27 +08:00
|
|
|
"ext-json": "*",
|
2018-09-23 00:30:42 +08:00
|
|
|
"ext-tidy": "*",
|
|
|
|
"ext-dom": "*",
|
2018-12-23 00:49:09 +08:00
|
|
|
"ext-xml": "*",
|
|
|
|
"ext-mbstring": "*",
|
|
|
|
"ext-gd": "*",
|
2018-12-23 23:34:38 +08:00
|
|
|
"ext-curl": "*",
|
2018-11-04 22:53:13 +08:00
|
|
|
"laravel/framework": "~5.5.44",
|
2017-11-19 23:56:06 +08:00
|
|
|
"fideloper/proxy": "~3.3",
|
|
|
|
"intervention/image": "^2.4",
|
2019-01-20 22:58:06 +08:00
|
|
|
"laravel/socialite": "3.0.x-dev",
|
2016-02-01 01:53:30 +08:00
|
|
|
"league/flysystem-aws-s3-v3": "^1.0",
|
2017-11-19 23:56:06 +08:00
|
|
|
"barryvdh/laravel-dompdf": "^0.8.1",
|
2016-09-29 16:32:40 +08:00
|
|
|
"predis/predis": "^1.1",
|
2017-01-01 20:20:30 +08:00
|
|
|
"gathercontent/htmldiff": "^0.2.1",
|
2017-11-19 23:56:06 +08:00
|
|
|
"barryvdh/laravel-snappy": "^0.4.0",
|
2017-10-01 20:19:17 +08:00
|
|
|
"socialiteproviders/slack": "^3.0",
|
2017-11-26 23:41:29 +08:00
|
|
|
"socialiteproviders/microsoft-azure": "^3.0",
|
2018-01-31 23:02:07 +08:00
|
|
|
"socialiteproviders/okta": "^1.0",
|
2018-02-11 19:44:09 +08:00
|
|
|
"socialiteproviders/gitlab": "^3.0",
|
2018-06-28 15:01:36 +08:00
|
|
|
"socialiteproviders/twitch": "^3.0",
|
2018-09-23 07:30:48 +08:00
|
|
|
"socialiteproviders/discord": "^2.0",
|
|
|
|
"doctrine/dbal": "^2.5"
|
2015-07-13 03:01:42 +08:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2017-11-19 23:56:06 +08:00
|
|
|
"filp/whoops": "~2.0",
|
2015-07-13 03:01:42 +08:00
|
|
|
"fzaninotto/faker": "~1.4",
|
2017-11-19 23:56:06 +08:00
|
|
|
"mockery/mockery": "~1.0",
|
|
|
|
"phpunit/phpunit": "~6.0",
|
2016-09-18 01:22:04 +08:00
|
|
|
"symfony/css-selector": "3.1.*",
|
2017-11-19 23:56:06 +08:00
|
|
|
"symfony/dom-crawler": "3.1.*",
|
|
|
|
"laravel/browser-kit-testing": "^2.0",
|
|
|
|
"barryvdh/laravel-ide-helper": "^2.4.1",
|
2018-01-29 00:58:52 +08:00
|
|
|
"barryvdh/laravel-debugbar": "^3.1.0",
|
|
|
|
"squizlabs/php_codesniffer": "^3.2"
|
2015-07-13 03:01:42 +08:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"classmap": [
|
|
|
|
"database"
|
|
|
|
],
|
|
|
|
"psr-4": {
|
2015-09-11 02:31:09 +08:00
|
|
|
"BookStack\\": "app/"
|
2016-08-14 19:29:35 +08:00
|
|
|
}
|
2015-07-13 03:01:42 +08:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
2017-02-04 19:58:42 +08:00
|
|
|
"psr-4": {
|
|
|
|
"Tests\\": "tests/"
|
|
|
|
}
|
2015-07-13 03:01:42 +08:00
|
|
|
},
|
|
|
|
"scripts": {
|
2016-09-18 01:22:04 +08:00
|
|
|
"post-root-package-install": [
|
|
|
|
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
|
|
],
|
|
|
|
"post-create-project-cmd": [
|
|
|
|
"php artisan key:generate"
|
|
|
|
],
|
2017-02-28 00:48:36 +08:00
|
|
|
"pre-update-cmd": [
|
|
|
|
"php -r \"!file_exists('bootstrap/cache/services.php') || @unlink('bootstrap/cache/services.php');\"",
|
|
|
|
"php -r \"!file_exists('bootstrap/cache/compiled.php') || @unlink('bootstrap/cache/compiled.php');\""
|
|
|
|
],
|
|
|
|
"pre-install-cmd": [
|
|
|
|
"php -r \"!file_exists('bootstrap/cache/services.php') || @unlink('bootstrap/cache/services.php');\"",
|
|
|
|
"php -r \"!file_exists('bootstrap/cache/compiled.php') || @unlink('bootstrap/cache/compiled.php');\""
|
|
|
|
],
|
2015-07-13 03:01:42 +08:00
|
|
|
"post-install-cmd": [
|
2017-02-02 06:16:32 +08:00
|
|
|
"php artisan cache:clear",
|
|
|
|
"php artisan view:clear"
|
2015-07-13 03:01:42 +08:00
|
|
|
],
|
2017-11-19 23:56:06 +08:00
|
|
|
"post-autoload-dump": [
|
|
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
|
|
"@php artisan package:discover"
|
2017-04-22 21:08:12 +08:00
|
|
|
],
|
|
|
|
"refresh-test-database": [
|
|
|
|
"php artisan migrate:refresh --database=mysql_testing",
|
|
|
|
"php artisan db:seed --class=DummyContentSeeder --database=mysql_testing"
|
2015-07-13 03:01:42 +08:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"config": {
|
2017-11-20 01:59:12 +08:00
|
|
|
"optimize-autoloader": true,
|
2017-11-19 23:56:06 +08:00
|
|
|
"preferred-install": "dist",
|
2017-12-05 01:59:53 +08:00
|
|
|
"platform": {
|
2018-12-23 00:49:09 +08:00
|
|
|
"php": "7.0.5"
|
2017-12-05 01:59:53 +08:00
|
|
|
}
|
2015-07-13 03:01:42 +08:00
|
|
|
}
|
|
|
|
}
|