-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
95 lines (95 loc) · 2.78 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
{
"name": "gemadigital/framework",
"description": "GemaDigital Framework",
"license": "MIT",
"authors": [
{
"name": "António Almeida",
"email": "[email protected]",
"homepage": "https://promatik.pt"
}
],
"homepage": "https://github.com/gema/laravel-framework",
"keywords": [
"Laravel",
"framework"
],
"require": {
"php": "^8.3|^8.4",
"backpack/activity-log": "^2.0",
"backpack/crud": "^6.8",
"backpack/pro": "^2.0",
"backpack/language-switcher": "^2.0",
"backpack/logmanager": "^5.0",
"backpack/permissionmanager": "^7.0",
"backpack/translation-manager": "^1.0",
"illuminate/support": "~12",
"laravel/framework": "^12.0",
"laravel/socialite": "^5.0",
"laravel/tinker": "^2.0",
"spatie/laravel-cookie-consent": "^3.2",
"spatie/laravel-translatable": "^6.1"
},
"require-dev": {
"backpack/generators": "^4.0",
"barryvdh/laravel-debugbar": "^3.2",
"fakerphp/faker": "^1.14",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^12",
"spatie/laravel-ignition": "^2.0",
"rector/rector": "^2.0",
"larastan/larastan": "^3.0",
"laravel/pint": "^1.15"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.backpackforlaravel.com/"
}
],
"autoload": {
"psr-4": {
"GemaDigital\\": "src/app/"
}
},
"autoload-dev": {
"psr-4": {
"GemaDigital\\Tests\\": "tests"
},
"files": [
"src\\app\\Helpers\\CommonHelper.php"
]
},
"extra": {
"laravel": {
"providers": [
"GemaDigital\\GemaDigitalServiceProvider"
]
}
},
"scripts": {
"analyse": [
"vendor/bin/phpstan analyse src"
],
"pint": [
"vendor/bin/pint"
],
"rector": [
"vendor/bin/rector"
]
},
"suggest": {
"backpack/backupmanager": "Useful to backup the database.",
"backpack/filemanager": "Useful to manage files on the server.",
"backpack/pagemanager": "Useful to manage pages on the server.",
"backpack/settings": "Useful to manage settings on the server.",
"barryvdh/laravel-elfinder": "Goes along with backpack/filemanager to manage files on the server.",
"league/flysystem-aws-s3-v3": "Required to connect to AWS S3 or a Digital Ocean Space.",
"eduardokum/laravel-mail-auto-embed": "Useful to embed images on emails."
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}