-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
74 lines (74 loc) · 1.76 KB
/
composer.json
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
{
"name": "weinstein/server",
"description": "Weinstein",
"type": "project",
"require": {
"php": "~8.0",
"ext-redis": "*",
"ext-zip": "1.*",
"ext-zlib": "*",
"laravel/framework": "8.83.*",
"laravel/helpers": "^1.3",
"laravel/ui": "^3.1",
"laravel/legacy-factories": "^1.1",
"laravelcollective/html": "*",
"phpoffice/phpspreadsheet": "^1.15",
"sentry/sentry-laravel": "*",
"setasign/fpdf": "^1.8"
},
"require-dev": {
"filp/whoops": "~2.0",
"mockery/mockery": "1.5.1",
"phpspec/phpspec": "^7.0",
"phpunit/phpunit": "9.6.9",
"symfony/css-selector": "5.*",
"symfony/dom-crawler": "5.*",
"laravel/browser-kit-testing": "^6",
"psalm/plugin-laravel": "^1.4",
"vimeo/psalm": "^4.3",
"friendsofphp/php-cs-fixer": "^2.17"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/",
"Test\\": "tests/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Test\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
],
"psalm": "psalm",
"psalm:update-baseline": "psalm --set-baseline=psalm-baseline.xml --update-baseline",
"cs:fix": "php-cs-fixer fix"
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}