-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
87 lines (87 loc) · 2.57 KB
/
composer.json
File metadata and controls
87 lines (87 loc) · 2.57 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
86
87
{
"$schema": "https://getcomposer.org/schema.json",
"name": "invoiceplane/invoiceplane-v2",
"type": "project",
"description": "",
"keywords": [],
"license": "MIT",
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"wikimedia/composer-merge-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"doctrine/dbal": ">=4.4",
"filament/actions": ">=4.5",
"filament/filament": ">=4.5",
"laravel/framework": ">=12.46",
"maatwebsite/excel": ">=3.1",
"maennchen/zipstream-php": ">=3.1",
"nwidart/laravel-modules": ">=12.0",
"spatie/laravel-permission": ">=6.24"
},
"require-dev": {
"barryvdh/laravel-debugbar": ">=3.16",
"brianium/paratest": ">=7.8",
"driftingly/rector-laravel": ">=2.1",
"fakerphp/faker": ">=1.24",
"larastan/larastan": ">=3.8",
"laravel/boost": ">=1.8",
"laravel/pail": ">=1.2",
"laravel/pint": "dev-feat/blade",
"laravel/sail": ">=1.52",
"laravel/tinker": ">=2.11",
"mockery/mockery": ">=1.6",
"nunomaduro/collision": ">=8.8",
"phpunit/phpunit": ">=11.5",
"rector/rector": ">=2.3",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Modules\\": "Modules/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan filament:upgrade"
],
"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 artisan migrate --graceful --ansi"
],
"dev": [],
"test": [
"@php artisan config:clear --ansi",
"@php artisan test"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
}
}