mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-08 07:16:49 +00:00
latest wip
This commit is contained in:
51
api/composer.lock
generated
51
api/composer.lock
generated
@@ -937,7 +937,7 @@
|
||||
"dist": {
|
||||
"type": "path",
|
||||
"url": "../packages/core-api",
|
||||
"reference": "34fa8946a309dd561f10e9244980a6b5c9be8d9e"
|
||||
"reference": "49e1c14866f71a4348c8bd96dc0cd26c96f72e62"
|
||||
},
|
||||
"require": {
|
||||
"aws/aws-sdk-php-laravel": "^3.7",
|
||||
@@ -955,6 +955,7 @@
|
||||
"laravel/sanctum": "^2.15",
|
||||
"php": "^7.4|^8.0",
|
||||
"pragmarx/countries": "^0.8.2",
|
||||
"ralouphie/mimey": "^1.0",
|
||||
"spatie/laravel-activitylog": "^3.17",
|
||||
"spatie/laravel-permission": "^5.5",
|
||||
"spatie/laravel-responsecache": "^6.6",
|
||||
@@ -1028,7 +1029,7 @@
|
||||
"dist": {
|
||||
"type": "path",
|
||||
"url": "../packages/fleetops-api",
|
||||
"reference": "e7427c4f913de56ad7bc91c736e3c099adba6635"
|
||||
"reference": "2f67fb71378d1e393c98460abade9bf1964cb1d9"
|
||||
},
|
||||
"require": {
|
||||
"fleetbase/core-api": "*",
|
||||
@@ -5528,6 +5529,50 @@
|
||||
},
|
||||
"time": "2019-03-08T08:55:37+00:00"
|
||||
},
|
||||
{
|
||||
"name": "ralouphie/mimey",
|
||||
"version": "1.0.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ralouphie/mimey.git",
|
||||
"reference": "2a0e997c733b7c2f9f8b61cafb006fd5fb9fa15a"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/ralouphie/mimey/zipball/2a0e997c733b7c2f9f8b61cafb006fd5fb9fa15a",
|
||||
"reference": "2a0e997c733b7c2f9f8b61cafb006fd5fb9fa15a",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~3.7.0",
|
||||
"satooshi/php-coveralls": ">=1.0"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Mimey\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Ralph Khattar",
|
||||
"email": "ralph.khattar@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "PHP package for converting file extensions to MIME types and vice versa.",
|
||||
"support": {
|
||||
"issues": "https://github.com/ralouphie/mimey/issues",
|
||||
"source": "https://github.com/ralouphie/mimey/tree/master"
|
||||
},
|
||||
"time": "2016-09-28T03:36:23+00:00"
|
||||
},
|
||||
{
|
||||
"name": "ramsey/collection",
|
||||
"version": "1.3.0",
|
||||
@@ -11414,5 +11459,5 @@
|
||||
"php": "^7.3|^8.0"
|
||||
},
|
||||
"platform-dev": [],
|
||||
"plugin-api-version": "2.3.0"
|
||||
"plugin-api-version": "2.2.0"
|
||||
}
|
||||
|
||||
@@ -42,6 +42,13 @@ return [
|
||||
'visibility' => 'public',
|
||||
],
|
||||
|
||||
'uploads' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/uploads'),
|
||||
'url' => env('APP_URL').'/uploads',
|
||||
'visibility' => 'public',
|
||||
],
|
||||
|
||||
's3' => [
|
||||
'driver' => 's3',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
@@ -68,6 +75,7 @@ return [
|
||||
|
||||
'links' => [
|
||||
public_path('storage') => storage_path('app/public'),
|
||||
public_path('uploads') => storage_path('app/uploads'),
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
1
api/public/uploads
Symbolic link
1
api/public/uploads
Symbolic link
@@ -0,0 +1 @@
|
||||
/var/www/html/api/storage/app/uploads
|
||||
Reference in New Issue
Block a user