2015-07-12 20:01:42 +01:00
|
|
|
{
|
2015-11-30 21:53:45 +00:00
|
|
|
"name": "ssddanbrown/bookstack",
|
|
|
|
"description": "BookStack documentation platform",
|
|
|
|
"keywords": ["BookStack", "Documentation"],
|
2015-07-12 20:01:42 +01:00
|
|
|
"license": "MIT",
|
|
|
|
"type": "project",
|
|
|
|
"require": {
|
2016-09-17 18:22:04 +01:00
|
|
|
"php": ">=5.6.4",
|
2017-01-25 19:35:40 +00:00
|
|
|
"laravel/framework": "5.4.*",
|
2016-07-10 11:53:37 +02:00
|
|
|
"ext-tidy": "*",
|
2015-08-16 18:59:23 +01:00
|
|
|
"intervention/image": "^2.3",
|
2017-01-25 19:35:40 +00:00
|
|
|
"laravel/socialite": "^3.0",
|
|
|
|
"barryvdh/laravel-ide-helper": "^2.2.3",
|
|
|
|
"barryvdh/laravel-debugbar": "^2.3.2",
|
2016-01-31 17:53:30 +00:00
|
|
|
"league/flysystem-aws-s3-v3": "^1.0",
|
2017-02-25 14:59:56 +00:00
|
|
|
"barryvdh/laravel-dompdf": "^0.8",
|
2016-09-29 09:32:40 +01:00
|
|
|
"predis/predis": "^1.1",
|
2017-01-01 12:20:30 +00:00
|
|
|
"gathercontent/htmldiff": "^0.2.1",
|
2017-01-25 19:35:40 +00:00
|
|
|
"barryvdh/laravel-snappy": "^0.3.1",
|
2017-02-04 11:01:49 +00:00
|
|
|
"laravel/browser-kit-testing": "^1.0",
|
|
|
|
"socialiteproviders/slack": "^3.0"
|
2015-07-12 20:01:42 +01:00
|
|
|
},
|
|
|
|
"require-dev": {
|
|
|
|
"fzaninotto/faker": "~1.4",
|
|
|
|
"mockery/mockery": "0.9.*",
|
2016-09-17 18:22:04 +01:00
|
|
|
"phpunit/phpunit": "~5.0",
|
|
|
|
"symfony/css-selector": "3.1.*",
|
|
|
|
"symfony/dom-crawler": "3.1.*"
|
2015-07-12 20:01:42 +01:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"classmap": [
|
|
|
|
"database"
|
|
|
|
],
|
|
|
|
"psr-4": {
|
2015-09-10 19:31:09 +01:00
|
|
|
"BookStack\\": "app/"
|
2016-08-14 12:29:35 +01:00
|
|
|
}
|
2015-07-12 20:01:42 +01:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
2017-02-04 11:58:42 +00:00
|
|
|
"psr-4": {
|
|
|
|
"Tests\\": "tests/"
|
|
|
|
}
|
2015-07-12 20:01:42 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
2016-09-17 18:22:04 +01: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 16:48:36 +00: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 20:01:42 +01:00
|
|
|
"post-install-cmd": [
|
2016-09-17 18:22:04 +01:00
|
|
|
"Illuminate\\Foundation\\ComposerScripts::postInstall",
|
2017-02-01 22:16:32 +00:00
|
|
|
"php artisan optimize",
|
|
|
|
"php artisan cache:clear",
|
|
|
|
"php artisan view:clear"
|
2015-07-12 20:01:42 +01:00
|
|
|
],
|
|
|
|
"post-update-cmd": [
|
2016-09-17 18:22:04 +01:00
|
|
|
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
|
2015-07-12 20:01:42 +01:00
|
|
|
"php artisan optimize"
|
2017-04-22 14:08:12 +01:00
|
|
|
],
|
|
|
|
"refresh-test-database": [
|
|
|
|
"php artisan migrate:refresh --database=mysql_testing",
|
|
|
|
"php artisan db:seed --class=DummyContentSeeder --database=mysql_testing"
|
2015-07-12 20:01:42 +01:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"preferred-install": "dist"
|
|
|
|
}
|
|
|
|
}
|