-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·94 lines (94 loc) · 2.85 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.1",
"coduo/php-humanizer": "^4.0",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.19",
"laravel/jetstream": "^2.13",
"laravel/sanctum": "^3.0",
"laravel/tinker": "^2.7",
"league/uri": "^6.8",
"livewire/livewire": "^2.5",
"monicahq/laravel-cloudflare": "^3.3",
"spatie/laravel-settings": "^2.6",
"spatie/laravel-validation-rules": "^3.2"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.12",
"barryvdh/laravel-translation-manager": "^0.6.3",
"driftingly/rector-laravel": "^0.14.1",
"fakerphp/faker": "^1.9.1",
"laravel-lang/attributes": "^2.0",
"laravel-lang/http-statuses": "^3.1",
"laravel-lang/lang": "^12.8",
"laravel-lang/publisher": "^14.4",
"laravel/pint": "^1.0",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.5.10",
"rector/rector": "^0.15.1",
"spatie/laravel-ignition": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"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"
],
"pint": "@php vendor/bin/pint -v",
"test-pint": "@php vendor/bin/pint -v --test",
"test": "@php artisan test",
"rector": "@php vendor/bin/rector",
"meta": [
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta",
"@php artisan ide-helper:models --write-mixin --reset --phpstorm-noinspections"
]
},
"extra": {
"laravel": {
"dont-discover": [
"laravel/fortify"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}