-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.99 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.99 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
{
"name": "puqcloud/puqcloud",
"type": "project",
"description": "PUQcloud - Open Source Cloud Billing & Automation System built on Laravel.",
"keywords": [
"puqcloud",
"cloud billing",
"laravel"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "PUQ sp. z o.o.",
"email": "support@puqcloud.com"
}
],
"require": {
"php": "^8.2",
"ext-fileinfo": "*",
"ext-mosquitto-php": "*",
"ext-pdo": "*",
"barryvdh/laravel-dompdf": "^3.1.1",
"dragonmantank/cron-expression": "^3.6.0",
"endroid/qr-code": "^6.0.9",
"fakerphp/faker": "^1.24.1",
"laravel/framework": "^12.41.1",
"laravel/horizon": "^5.40.2",
"laravel/pint": "^1.26.0",
"laravel/sail": "^1.50.0",
"laravel/tinker": "^2.10.2",
"league/flysystem-aws-s3-v3": "^3.30.1",
"league/fractal": "^0.20.2",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.8.3",
"pear/net_dns2": "^2.0.7",
"phpseclib/phpseclib": "^3.0.47",
"robthree/twofactorauth": "^3.0.2",
"setasign/fpdi": "^2.6.4",
"tecnickcom/tcpdf": "^6.10.1",
"webklex/php-imap": "^6.2",
"yajra/laravel-datatables-oracle": "^12.6.2",
"zircote/swagger-php": "^5.7"
},
"autoload": {
"files": [
"app/Helpers/helpers.php"
],
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"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": "stable",
"prefer-stable": true
}