-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
104 lines (104 loc) · 3.37 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
{
"name": "ohflesvos/community-manager",
"type": "project",
"description": "NGO management application",
"license": "AGPL-3.0-or-later",
"require": {
"php": "^8.2.0",
"akaunting/laravel-language": "^1.0",
"anlutro/l4-settings": "^1.0",
"cviebrock/eloquent-sluggable": "^10.0",
"doctrine/dbal": "^3.1",
"dyrynda/laravel-nullable-fields": "^4.0",
"endroid/qr-code": "^5.0",
"exolnet/laravel-sqlite-fluent-drop-foreign": "^1.1",
"graham-campbell/markdown": "^15.0",
"gumlet/php-image-resize": "^2.0",
"guzzlehttp/guzzle": "^7.2",
"intervention/image": "^2.6",
"intervention/validation": "^3.1",
"jeroendesloovere/vcard": "^1.6",
"laravel/framework": "^10.0",
"laravel/sanctum": "^3.0",
"laravel/socialite": "^5.0",
"laravel/ui": "^4.0",
"maatwebsite/excel": "^3.1",
"maennchen/zipstream-php": "^3.0",
"monarobase/country-list": "^3.2",
"mpdf/mpdf": "^8.0.17",
"mrcage/chf-exchange-rates": "^3.0",
"org_heigl/ghostscript": "^2.3",
"owen-it/laravel-auditing": "^13.0",
"petercoles/multilingual-language-list": "^1.1",
"sentry/sentry-laravel": "^4.0.0",
"shiftonelabs/laravel-cascade-deletes": "^2.0",
"spatie/pdf-to-image": "^2.1",
"spomky-labs/otphp": "^11.0",
"tightenco/ziggy": "^1.0",
"usystems/webling-api-php": "^1.2"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.6",
"barryvdh/laravel-ide-helper": "^2.6",
"fakerphp/faker": "^1.9.1",
"filp/whoops": "~2.0",
"laravel/pint": "^1.1",
"laravel/sail": "^1.14",
"librenms/laravel-vue-i18n-generator": "dev-master",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.8",
"larastan/larastan": "^2.7.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"phpunit/phpunit": "^10.3.2",
"spatie/laravel-ignition": "^2.3"
},
"autoload": {
"files": [
"app/helpers.php"
],
"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",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}