2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-11-30 16:53:45 -05:00
|
|
|
"name": "ssddanbrown/bookstack",
|
|
|
|
"description": "BookStack documentation platform",
|
|
|
|
"keywords": ["BookStack", "Documentation"],
|
2015-07-12 15:01:42 -04:00
|
|
|
"license": "MIT",
|
|
|
|
"type": "project",
|
|
|
|
"require": {
|
2016-09-17 13:22:04 -04:00
|
|
|
"php": ">=5.6.4",
|
2017-01-25 14:35:40 -05:00
|
|
|
"laravel/framework": "5.4.*",
|
2016-07-10 05:53:37 -04:00
|
|
|
"ext-tidy": "*",
|
2015-08-16 13:59:23 -04:00
|
|
|
"intervention/image": "^2.3",
|
2017-01-25 14:35:40 -05:00
|
|
|
"laravel/socialite": "^3.0",
|
|
|
|
"barryvdh/laravel-ide-helper": "^2.2.3",
|
|
|
|
"barryvdh/laravel-debugbar": "^2.3.2",
|
2016-01-31 12:53:30 -05:00
|
|
|
"league/flysystem-aws-s3-v3": "^1.0",
|
2017-02-25 09:59:56 -05:00
|
|
|
"barryvdh/laravel-dompdf": "^0.8",
|
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-01-25 14:35:40 -05:00
|
|
|
"barryvdh/laravel-snappy": "^0.3.1",
|
2017-02-04 06:01:49 -05:00
|
|
|
"laravel/browser-kit-testing": "^1.0",
|
|
|
|
"socialiteproviders/slack": "^3.0"
|
2015-07-12 15:01:42 -04:00
|
|
|
},
|
|
|
|
"require-dev": {
|
|
|
|
"fzaninotto/faker": "~1.4",
|
|
|
|
"mockery/mockery": "0.9.*",
|
2016-09-17 13:22:04 -04:00
|
|
|
"phpunit/phpunit": "~5.0",
|
|
|
|
"symfony/css-selector": "3.1.*",
|
|
|
|
"symfony/dom-crawler": "3.1.*"
|
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": [
|
2016-09-17 13:22:04 -04:00
|
|
|
"Illuminate\\Foundation\\ComposerScripts::postInstall",
|
2017-02-01 17:16:32 -05:00
|
|
|
"php artisan optimize",
|
|
|
|
"php artisan cache:clear",
|
|
|
|
"php artisan view:clear"
|
2015-07-12 15:01:42 -04:00
|
|
|
],
|
|
|
|
"post-update-cmd": [
|
2016-09-17 13:22:04 -04:00
|
|
|
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
|
2015-07-12 15:01:42 -04:00
|
|
|
"php artisan optimize"
|
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": {
|
|
|
|
"preferred-install": "dist"
|
|
|
|
}
|
|
|
|
}
|