-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
103 lines (101 loc) · 3.35 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "lightszentip/laravel-starter-base-app",
"type": "project",
"description": "A powerful starter kit for Laravel applications featuring Filament and Jetstream, designed for rapid development with the latest quality standards. Perfect for building scalable and maintainable Laravel apps with a modern tech stack including Livewire, PHPStan, and Pest.",
"keywords": ["laravel", "starter-kit-laravel","starter kit","template"],
"license": "MIT",
"authors": [
{
"name": "Lightszentip",
"email": "Lightszentip@gmail.com",
"homepage": "https://gnetos.de",
"role": "Maintainer"
}
],
"require": {
"php": "^8.2",
"graham-campbell/security": "11.2",
"laravel/framework": "^11.21",
"laravel/pennant": "^1.11",
"laravel/tinker": "^2.9"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"fakerphp/faker": "^1.23",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.17",
"laravel/sail": "^1.31",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.4",
"pestphp/pest": "^2.35",
"phpat/phpat": "^0.10.18",
"phpmd/phpmd": "@stable",
"psalm/plugin-laravel": "^v2.11.0",
"psalm/plugin-mockery": "^1.1",
"psalm/plugin-phpunit": "^0.19.0",
"squizlabs/php_codesniffer": "3.10.3",
"vimeo/psalm": "5.26.1"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"psalm": "vendor/bin/psalm --config=psalm.xml",
"larastan": "vendor/bin/phpstan analyse --memory-limit=2G app tests",
"pint": "vendor/bin/pint",
"test:pest": "vendor/bin/pest --parallel",
"test:phpstan": "vendor/bin/phpstan analyse",
"test": [
"@test:pest",
"@test:phpstan"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
],
"lint": [
"vendor/bin/phpcs --standard=PSR12 app/",
"vendor/bin/phpstan analyse"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"phpro/grumphp-shim": true
},
"platform": {
"php": "8.2"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}