BookStack/composer.json

56 lines
1.4 KiB
JSON
Raw Normal View History

2015-07-12 19:01:42 +00:00
{
"name": "ssddanbrown/bookstack",
"description": "BookStack documentation platform",
"keywords": ["BookStack", "Documentation"],
2015-07-12 19:01:42 +00:00
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
2015-07-13 20:52:56 +00:00
"laravel/framework": "5.1.*",
"intervention/image": "^2.3",
"laravel/socialite": "^2.0",
"barryvdh/laravel-ide-helper": "^2.1",
"barryvdh/laravel-debugbar": "^2.0"
2015-07-12 19:01:42 +00:00
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1"
2015-07-12 19:01:42 +00:00
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"BookStack\\": "app/"
2015-07-12 19:01:42 +00:00
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan optimize"
],
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
}