-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
126 lines (126 loc) · 4.1 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": [
"laravel",
"framework"
],
"license": "MIT",
"require": {
"php": "^8.3",
"blade-ui-kit/blade-icons": "^1.7",
"davidhsianturi/blade-bootstrap-icons": "^1.5",
"joeymckenzie/sqlighter": "^0.1.1",
"laravel/folio": "^1.1",
"laravel/framework": "^11.9",
"laravel/tinker": "^2.9",
"owenvoke/blade-fontawesome": "^2.6",
"spatie/laravel-markdown": "^2.5",
"spatie/laravel-sitemap": "^7.2",
"symfony/yaml": "^7.1"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.14",
"barryvdh/laravel-ide-helper": "^3.1",
"fakerphp/faker": "^1.23",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.13",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"pestphp/pest": "^3.2",
"pestphp/pest-plugin-laravel": "^3.0",
"pestphp/pest-plugin-type-coverage": "^3.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-strict-rules": "^1.6",
"rector/rector": "^1.2"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Examples\\": "examples/php/"
}
},
"scripts": {
"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"
],
"test:integration": "./vendor/bin/pest --colors=always",
"test:watch": "./vendor/bin/pest --watch --parallel",
"test:types": "./vendor/bin/pest --type-coverage --min=100",
"test": [
"@test:types",
"@test:integration"
],
"rector:cache": "php vendor/bin/rector process --dry-run --config=rector.php",
"icons:cache": [
"php artisan icons:clear",
"php artisan icons:cache"
],
"view:cache": [
"php artisan view:clear",
"php artisan view:cache"
],
"views": [
"@icons:cache",
"@view:cache"
],
"prepare": "git config core.hookspath .githooks",
"lint": "./vendor/bin/phpstan analyze",
"lint:watch": "find app/ resources/ routes/ database/ tests/ phpstan.neon | entr -s 'composer run lint'",
"fmt": "./vendor/bin/pint -v",
"rector": "vendor/bin/rector process",
"ci": [
"@lint",
"@fmt",
"@rector"
],
"helper:generate": "php artisan ide-helper:generate",
"helper:models": "php artisan ide-helper:models",
"helper:meta": "php artisan ide-helper:meta",
"helper": [
"@helper:generate",
"@helper:models",
"@helper:meta"
],
"tail": "php artisan pail -vv"
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}