-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·46 lines (46 loc) · 1014 Bytes
/
composer.json
File metadata and controls
executable file
·46 lines (46 loc) · 1014 Bytes
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
{
"name": "elyerr/vpn",
"version": "1.0.0",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"Vpn\\App\\": "app/",
"Vpn\\Database\\Factories\\": "database/factories/",
"Vpn\\Database\\Seeders\\": "database/seeders/",
"Vpn\\Tests\\": "tests/",
"GPBMetadata\\": "GPBMetadata/",
"Proto\\": "Proto/"
},
"files": [
"app/Helpers/helper.php"
]
},
"extra": {
"laravel": {
"providers": [
"Vpn\\App\\Providers\\ServiceProvider"
]
}
},
"require": {
"elyerr/laravel-runtime": "^1.0",
"inertiajs/inertia-laravel": "^2.0",
"elyerr/api-response": "^1.0",
"laravel/framework": "^12.44",
"grpc/grpc": "^1.74",
"google/protobuf": "^4.33"
},
"scripts": {
"post-autoload-dump": [
"php artisan assets:publish",
"php artisan keys:generator --force"
]
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}