]> BookStack Code Mirror - bookstack/blob - composer.json
Fixed WYSIWYG fullscreen mode on firefox
[bookstack] / composer.json
1 {
2     "name": "bookstackapp/bookstack",
3     "description": "BookStack documentation platform",
4     "keywords": ["BookStack", "Documentation"],
5     "license": "MIT",
6     "type": "project",
7     "require": {
8         "php": ">=7.0.0",
9         "laravel/framework": "5.5.*",
10         "fideloper/proxy": "~3.3",
11         "ext-tidy": "*",
12         "intervention/image": "^2.4",
13         "laravel/socialite": "^3.0",
14         "league/flysystem-aws-s3-v3": "^1.0",
15         "barryvdh/laravel-dompdf": "^0.8.1",
16         "predis/predis": "^1.1",
17         "gathercontent/htmldiff": "^0.2.1",
18         "barryvdh/laravel-snappy": "^0.4.0",
19         "socialiteproviders/slack": "^3.0",
20         "socialiteproviders/microsoft-azure": "^3.0"
21     },
22     "require-dev": {
23         "filp/whoops": "~2.0",
24         "fzaninotto/faker": "~1.4",
25         "mockery/mockery": "~1.0",
26         "phpunit/phpunit": "~6.0",
27         "symfony/css-selector": "3.1.*",
28         "symfony/dom-crawler": "3.1.*",
29         "laravel/browser-kit-testing": "^2.0",
30         "barryvdh/laravel-ide-helper": "^2.4.1",
31         "barryvdh/laravel-debugbar": "^3.1.0"
32     },
33     "autoload": {
34         "classmap": [
35             "database"
36         ],
37         "psr-4": {
38             "BookStack\\": "app/"
39         }
40     },
41     "autoload-dev": {
42         "psr-4": {
43             "Tests\\": "tests/"
44         }
45     },
46     "scripts": {
47         "post-root-package-install": [
48             "php -r \"file_exists('.env') || copy('.env.example', '.env');\""
49         ],
50         "post-create-project-cmd": [
51             "php artisan key:generate"
52         ],
53         "pre-update-cmd": [
54             "php -r \"!file_exists('bootstrap/cache/services.php') || @unlink('bootstrap/cache/services.php');\"",
55             "php -r \"!file_exists('bootstrap/cache/compiled.php') || @unlink('bootstrap/cache/compiled.php');\""
56         ],
57         "pre-install-cmd": [
58             "php -r \"!file_exists('bootstrap/cache/services.php') || @unlink('bootstrap/cache/services.php');\"",
59             "php -r \"!file_exists('bootstrap/cache/compiled.php') || @unlink('bootstrap/cache/compiled.php');\""
60         ],
61         "post-install-cmd": [
62             "php artisan cache:clear",
63             "php artisan view:clear"
64         ],
65         "post-autoload-dump": [
66             "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
67             "@php artisan package:discover"
68         ],
69         "refresh-test-database": [
70             "php artisan migrate:refresh --database=mysql_testing",
71             "php artisan db:seed --class=DummyContentSeeder --database=mysql_testing"
72         ]
73     },
74     "config": {
75         "optimize-autoloader": true,
76         "preferred-install": "dist",
77         "platform": {
78             "php": "7.0"
79         }
80     }
81 }