]> BookStack Code Mirror - bookstack/blob - composer.json
Fixes a corner case with exclamation in the ID.
[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.22",
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         "socialiteproviders/okta": "^1.0",
22         "socialiteproviders/gitlab": "^3.0",
23         "socialiteproviders/twitch": "^3.0"
24     },
25     "require-dev": {
26         "filp/whoops": "~2.0",
27         "fzaninotto/faker": "~1.4",
28         "mockery/mockery": "~1.0",
29         "phpunit/phpunit": "~6.0",
30         "symfony/css-selector": "3.1.*",
31         "symfony/dom-crawler": "3.1.*",
32         "laravel/browser-kit-testing": "^2.0",
33         "barryvdh/laravel-ide-helper": "^2.4.1",
34         "barryvdh/laravel-debugbar": "^3.1.0",
35         "squizlabs/php_codesniffer": "^3.2"
36     },
37     "autoload": {
38         "classmap": [
39             "database"
40         ],
41         "psr-4": {
42             "BookStack\\": "app/"
43         }
44     },
45     "autoload-dev": {
46         "psr-4": {
47             "Tests\\": "tests/"
48         }
49     },
50     "scripts": {
51         "post-root-package-install": [
52             "php -r \"file_exists('.env') || copy('.env.example', '.env');\""
53         ],
54         "post-create-project-cmd": [
55             "php artisan key:generate"
56         ],
57         "pre-update-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         "pre-install-cmd": [
62             "php -r \"!file_exists('bootstrap/cache/services.php') || @unlink('bootstrap/cache/services.php');\"",
63             "php -r \"!file_exists('bootstrap/cache/compiled.php') || @unlink('bootstrap/cache/compiled.php');\""
64         ],
65         "post-install-cmd": [
66             "php artisan cache:clear",
67             "php artisan view:clear"
68         ],
69         "post-autoload-dump": [
70             "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
71             "@php artisan package:discover"
72         ],
73         "refresh-test-database": [
74             "php artisan migrate:refresh --database=mysql_testing",
75             "php artisan db:seed --class=DummyContentSeeder --database=mysql_testing"
76         ]
77     },
78     "config": {
79         "optimize-autoloader": true,
80         "preferred-install": "dist",
81         "platform": {
82             "php": "7.0"
83         }
84     }
85 }
Morty Proxy This is a proxified and sanitized view of the page, visit original site.