This repository has been archived on 2024-12-30. You can view files and clone it, but cannot push or open issues or pull requests.
w0bm/composer.json
2021-06-25 08:25:11 +00:00

70 lines
1.8 KiB
JSON

{
"name": "w0bm/w0bm.com",
"description": "Webm image board.",
"keywords": ["webm", "laravel", "image board"],
"license": "MIT",
"type": "project",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/w0bm/eloquent-taggable"
}
],
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*",
"barryvdh/laravel-ide-helper": "^2.1",
"doctrine/dbal": "^2.5",
"toddish/verify": "^5.0",
"guzzlehttp/guzzle": "^6.1",
"laravelcollective/html": "^5.0",
"greggilbert/recaptcha": "^2.0",
"cviebrock/eloquent-taggable": "dev-master",
"itsgoingd/clockwork": "^1.14",
"erusev/parsedown": "^1.6",
"sentry/sentry-laravel": "^0.8.0",
"mews/captcha": "^3.0",
"shetabit/visitor": "^2.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"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"
}
}