-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.1 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"name": "ozitag/tager-backend-core",
"description": "Backend Core for all projects",
"license": "MIT",
"homepage": "https://github.com/ozitag/tager-backend-core",
"authors": [
{
"name": "Vital Ozierski <v.ozierski@ozitag.com>",
"email": "v.ozierski@ozitag.com",
"homepage": "https://ozitag.com",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"laravel/framework": "^12.0",
"laravel/tinker": "^2.9",
"guzzlehttp/guzzle": "^7.8",
"sentry/sentry-laravel": "^4.13",
"kalnoy/nestedset": "^6.0",
"predis/predis": "^1.1",
"ozitag/tager-backend-http-cache": "^1.0",
"ozitag/tager-backend-utils": "^1.2",
"ozerich/laravel-filestorage-db": "^0.6.22",
"doctrine/dbal": "^4.0"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^8.1",
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"psr-4": {
"OZiTAG\\Tager\\Backend\\Core\\": "src"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}