generated from Sikessem/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
105 lines (105 loc) · 2.7 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
104
105
{
"type": "project",
"name": "sikessem/starter",
"description": "Start PHP applications using Laravel preconfigured with TypeScript, Livewire, AlpineJS, TailwindCSS and many others such as Bun, Vite, Biome, Pint, PHPStan, Larastan, Rector, etc.",
"keywords": [
"alpinejs",
"bun",
"composer",
"laravel",
"larastan",
"livewire",
"pest",
"pnpm",
"php",
"phpstan",
"rector",
"biome",
"sikessem",
"starter-template",
"tailwindcss",
"typescript",
"vitejs"
],
"homepage": "https://packagist.org/packages/sikessem/starter",
"license": "MIT",
"authors": [
{
"name": "Sigui Kessé Emmanuel",
"email": "[email protected]",
"homepage": "https://sigui.ci"
}
],
"support": {
"source": "https://github.com/sikessem/starter",
"issues": "https://github.com/sikessem/starter/issues",
"chat": "https://github.com/orgs/sikessem/discussions"
},
"require": {
"php": "*",
"guzzlehttp/guzzle": "^7.8",
"laravel/sanctum": "^3.3",
"laravel/tinker": "^2.8",
"livewire/livewire": "^3.3",
"sikessem/framework": "^0.4.0",
"sikessem/ui": "^0.7.0",
"spatie/laravel-sitemap": "^6.4"
},
"require-dev": {
"sikessem/laravel-devtools": "^0.9.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"My\\": "src/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse --ansi --memory-limit=-1 --debug",
"check": "pint --test -v",
"debug": ["@check", "@analyse", "@review", "@test"],
"fix": ["@refactor", "@lint"],
"lint": "pint -v",
"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"],
"test": "pest --colors=always",
"review": "rector --dry-run --debug",
"refactor": "rector"
},
"extra": {
"laravel": {
"dont-discover": []
},
"branch-alias": {
"dev-main": "0.x-dev"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}