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",
|
|
|
|
"keywords": ["BookStack", "Documentation"],
|
2015-07-12 15:01:42 -04:00
|
|
|
"license": "MIT",
|
|
|
|
"type": "project",
|
|
|
|
"require": {
|
2017-11-19 10:56:06 -05:00
|
|
|
"php": ">=7.0.0",
|
2018-05-19 12:01:33 -04:00
|
|
|
"laravel/framework": "~5.5.22",
|
2017-11-19 10:56:06 -05:00
|
|
|
"fideloper/proxy": "~3.3",
|
2016-07-10 05:53:37 -04:00
|
|
|
"ext-tidy": "*",
|
2017-11-19 10:56:06 -05:00
|
|
|
"intervention/image": "^2.4",
|
2017-01-25 14:35:40 -05:00
|
|
|
"laravel/socialite": "^3.0",
|
2016-01-31 12:53:30 -05:00
|
|
|
"league/flysystem-aws-s3-v3": "^1.0",
|
2017-11-19 10:56:06 -05:00
|
|
|
"barryvdh/laravel-dompdf": "^0.8.1",
|
2016-09-29 04:32:40 -04:00
|
|
|
"predis/predis": "^1.1",
|
2017-01-01 07:20:30 -05:00
|
|
|
"gathercontent/htmldiff": "^0.2.1",
|
2017-11-19 10:56:06 -05:00
|
|
|
"barryvdh/laravel-snappy": "^0.4.0",
|
2017-10-01 08:19:17 -04:00
|
|
|
"socialiteproviders/slack": "^3.0",
|
2017-11-26 10:41:29 -05:00
|
|
|
"socialiteproviders/microsoft-azure": "^3.0",
|
2018-01-31 10:02:07 -05:00
|
|
|
"socialiteproviders/okta": "^1.0",
|
2018-02-11 06:44:09 -05:00
|
|
|
"socialiteproviders/gitlab": "^3.0",
|
2018-01-29 03:28:56 -05:00
|
|
|
"socialiteproviders/twitch": "^3.0"
|
2015-07-12 15:01:42 -04:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2017-11-19 10:56:06 -05:00
|
|
|
"filp/whoops": "~2.0",
|
2015-07-12 15:01:42 -04:00
|
|
|
"fzaninotto/faker": "~1.4",
|
2017-11-19 10:56:06 -05:00
|
|
|
"mockery/mockery": "~1.0",
|
|
|
|
"phpunit/phpunit": "~6.0",
|
2016-09-17 13:22:04 -04:00
|
|
|
"symfony/css-selector": "3.1.*",
|
2017-11-19 10:56:06 -05:00
|
|
|
"symfony/dom-crawler": "3.1.*",
|
|
|
|
"laravel/browser-kit-testing": "^2.0",
|
|
|
|
"barryvdh/laravel-ide-helper": "^2.4.1",
|
2018-01-28 11:58:52 -05:00
|
|
|
"barryvdh/laravel-debugbar": "^3.1.0",
|
|
|
|
"squizlabs/php_codesniffer": "^3.2"
|
2015-07-12 15:01:42 -04:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"classmap": [
|
|
|
|
"database"
|
|
|
|
],
|
|
|
|
"psr-4": {
|
2015-09-10 14:31:09 -04:00
|
|
|
"BookStack\\": "app/"
|
2016-08-14 07:29:35 -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": {
|
2016-09-17 13:22:04 -04:00
|
|
|
"post-root-package-install": [
|
|
|
|
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
|
|
],
|
|
|
|
"post-create-project-cmd": [
|
|
|
|
"php artisan key:generate"
|
|
|
|
],
|
2017-02-27 11:48:36 -05: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-12 15:01:42 -04:00
|
|
|
"post-install-cmd": [
|
2017-02-01 17:16:32 -05:00
|
|
|
"php artisan cache:clear",
|
|
|
|
"php artisan view:clear"
|
2015-07-12 15:01:42 -04:00
|
|
|
],
|
2017-11-19 10:56:06 -05:00
|
|
|
"post-autoload-dump": [
|
|
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
|
|
"@php artisan package:discover"
|
2017-04-22 09:08:12 -04:00
|
|
|
],
|
|
|
|
"refresh-test-database": [
|
|
|
|
"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",
|
2017-12-04 12:59:53 -05:00
|
|
|
"platform": {
|
|
|
|
"php": "7.0"
|
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
}
|