1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-01-17 21:28:30 +01:00
LinkAce/composer.json
Kovah e9bdf442ae
Correct the setup of backup notifications (#155)
Also optimize the Docker Compose files to include the path for local backups.
2020-10-09 11:05:28 +02:00

79 lines
2.0 KiB
JSON

{
"name": "kovah/linkace",
"description": "A small, selfhosted bookmark manager with advanced features, built with Laravel and Docker",
"license": "GPL-3.0-or-later",
"type": "project",
"require": {
"php": "^7.2.5",
"composer/semver": "^1.5",
"doctrine/dbal": "2.10.2",
"fideloper/proxy": "^4.0",
"guzzlehttp/guzzle": "^6.3",
"laracasts/flash": "^3.1",
"laravel/framework": "^7.0",
"laravel/ui": "^2.0",
"league/csv": "^9.6",
"predis/predis": "^1.1",
"shaarli/netscape-bookmark-parser": "^2.1",
"spatie/laravel-backup": "^6.11",
"venturecraft/revisionable": "^1.34"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.2",
"barryvdh/laravel-ide-helper": "^2.6",
"facade/ignition": "^2.0.0",
"fzaninotto/faker": "^1.4",
"laravel/tinker": "^2.2.0",
"mockery/mockery": "1.3.*",
"nunomaduro/collision": "^4.1",
"phpunit/phpunit": "^8.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"files": [
"app/Helper/functions.php"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
]
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"lint": "./vendor/bin/phpcs",
"test": "./vendor/bin/phpunit",
"code-coverage": "./vendor/bin/phpunit --coverage-clover test-coverage.xml"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}