-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·131 lines (130 loc) · 4.43 KB
/
composer.json
File metadata and controls
executable file
·131 lines (130 loc) · 4.43 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
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
127
128
129
130
131
{
"$schema": "https://getcomposer.org/schema.json",
"name": "foleybridge/nestogy-erp",
"type": "project",
"description": "Nestogy ERP - Managed Service Provider Enterprise Resource Planning System",
"keywords": [
"laravel",
"erp",
"msp",
"managed-service-provider",
"nestogy"
],
"license": "MIT",
"require": {
"php": "^8.2",
"barryvdh/laravel-dompdf": "^3.1",
"erag/laravel-pwa": "^1.9",
"guzzlehttp/guzzle": "^7.9",
"intervention/image": "^3.3",
"laravel-notification-channels/webpush": "^10.2",
"laravel/fortify": "*",
"laravel/framework": "^12.0",
"laravel/nightwatch": "^1.13",
"laravel/reverb": "^1.6",
"laravel/sanctum": "^4.2",
"laravel/socialite": "^5.14",
"laravel/tinker": "^2.10.1",
"league/csv": "^9.24",
"league/flysystem-aws-s3-v3": "^3.29",
"livewire/flux": "dev-main",
"livewire/flux-pro": "^2.9",
"livewire/livewire": "^3.6",
"maatwebsite/excel": "^3.1",
"pragmarx/google2fa-laravel": "^2.3",
"pusher/pusher-php-server": "^7.2",
"silber/bouncer": "^1.0",
"smtp2go-oss/smtp2go-php": "^1.1",
"spatie/laravel-activitylog": "^4.10",
"spatie/laravel-backup": "^9.3",
"spatie/laravel-data": "^4.0",
"spatie/laravel-medialibrary": "^11.1",
"spatie/laravel-pdf": "^1.6",
"spatie/laravel-query-builder": "^6.3",
"stripe/stripe-php": "^17.5",
"symfony/mailer": "^7.0",
"webklex/laravel-imap": "^6.2"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.0",
"barryvdh/laravel-ide-helper": "^3.6",
"brianium/paratest": "^7.8",
"fakerphp/faker": "^1.23",
"laravel/pail": "^1.2.2",
"laravel/pint": "^1.13",
"laravel/sail": "^1.41",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.6",
"nunomaduro/larastan": "^3.8",
"phpunit/phpunit": "^11.5.3",
"spatie/laravel-ray": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Foleybridge\\Nestogy\\": "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",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:work --queue=emails,default --tries=3\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite"
],
"test": [
"@php artisan config:clear --ansi",
"@php artisan test"
],
"test:unit": "phpunit --testsuite=Unit",
"test:feature": "phpunit --testsuite=Feature",
"test:integration": "phpunit --testsuite=Integration",
"test:financial": "phpunit --testsuite=Financial",
"test:quick": "phpunit --testsuite=Quick",
"test:coverage": "phpunit --coverage-html coverage/html",
"test:parallel": "php artisan test --parallel"
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"symfony/runtime": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": {
"flux-pro": {
"type": "composer",
"url": "https://composer.fluxui.dev"
}
}
}