-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
97 lines (97 loc) · 2.96 KB
/
composer.json
File metadata and controls
97 lines (97 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "willpower232/totpbtf3",
"description": "TOTP-But-Thank-Frick-For-Folders is a web-based TOTP manager, mainly an excuse to put codes in a folder structure",
"license": "MIT",
"type": "project",
"require": {
"php": "^8.4",
"bacon/bacon-qr-code": "^3.0",
"defuse/php-encryption": "^2.4",
"diglactic/laravel-breadcrumbs": "^10.0",
"hashids/hashids": "^5.0",
"laravel/framework": "^12.48",
"laravel/tinker": "^2.10",
"laravel/ui": "^4.6",
"robthree/twofactorauth": "^3.0",
"sentry/sentry-laravel": "^4.13",
"spatie/laravel-login-link": "^1.6"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"larastan/larastan": "^3.9",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.8",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpstan/extension-installer": "^1.4",
"phpunit/phpunit": "^12.5",
"robiningelbrecht/phpunit-coverage-tools": "^1.9",
"spatie/laravel-ignition": "^2.9",
"squizlabs/php_codesniffer": "^3.11"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php artisan migrate --graceful --ansi"
],
"analyse": [
"phpstan analyse --level 8 app tests"
],
"lint": [
"parallel-lint --exclude vendor ."
],
"phpunit": [
"XDEBUG_MODE=coverage phpunit --coverage-clover coverage.clover -d --min-coverage=100 --coverage-html build/html tests"
],
"sniff": [
"phpcs --standard=PSR12 app/ tests/"
],
"test": [
"@sniff",
"@lint",
"@analyse",
"@phpunit"
]
},
"$schema": "https://getcomposer.org/schema.json"
}