-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.55 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 2.55 KB
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
{
"name": "viewhook/app",
"type": "project",
"description": "viewhook.dev - A webhook testing application",
"license": "MIT",
"require": {
"php": "^8.4",
"inertiajs/inertia-laravel": "^2.0",
"laravel/framework": "^12.0",
"laravel/reverb": "^1.7",
"laravel/sanctum": "^4.0",
"laravel/wayfinder": "^0.1.13",
"resend/resend-laravel": "^1.1",
"tightenco/ziggy": "^2.0"
},
"require-dev": {
"doctrine/dbal": "^4.4",
"driftingly/rector-laravel": "^2.1",
"fakerphp/faker": "^1.24",
"larastan/larastan": "^3.9",
"laravel/breeze": "^2.3",
"laravel/pint": "^1.24",
"laravel/sail": "^1.52",
"mockery/mockery": "^1.6",
"pestphp/pest": "*",
"pestphp/pest-plugin-laravel": "*",
"rector/rector": "^2.3"
},
"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"
],
"lint": "./vendor/bin/pint --test",
"lint:fix": "./vendor/bin/pint",
"rector": "./vendor/bin/rector --dry-run",
"rector:fix": "./vendor/bin/rector",
"types": "./vendor/bin/phpstan analyse --memory-limit=512M",
"test:both": "./vendor/bin/pest --parallel --coverage --min=100",
"test:unit": "./vendor/bin/pest --testsuite=Unit",
"test:feature": "./vendor/bin/pest --testsuite=Feature",
"test": [
"@lint",
"@rector",
"@types",
"@test:both"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}