FileGator - a free, open-source, self-hosted web application for managing files and folders.

Overview

Live demo Build Status PHP master Build Status Node master Code Coverage License

FileGator - Powerful Multi-User File Manager

FileGator is a free, open-source, self-hosted web application for managing files and folders.

You can manage files inside your local repository folder (on your server's hard drive) or connect to other storage adapters (see below).

FileGator has multi-user support so you can have admins and other users managing files with different access permissions, roles and home folders.

All basic file operations are supported: copy, move, rename, edit, create, delete, preview, zip, unzip, download, upload.

If allowed, users can download multiple files or folders at once.

File upload supports drag&drop, progress bar, pause and resume. Upload is chunked so you should be able to upload large files regardless of your server configuration.

Screenshot

Sponsors & Backers

FileGator is a free, open-source project. It's an independent project with its ongoing development made possible entirely thanks to the support by these awesome backers. If you'd like to join them, please consider:

Typical use cases

  • share a folder with colleagues, your team, friends or family
  • give students access to upload their work
  • allow workers to upload field data / docs / images
  • use as cloud backup
  • manage cdn with multiple people
  • use as ftp/sftp replacement
  • manage s3 or other 3rd party cloud storage
  • use to quickly zip and download remote files

Demo

https://demo.filegator.io

This is read-only demo with guest account enabled.

  • you can log in as john/john to see John's private files
  • or jane/jane as readonly + download user.

Documentation

Check out the documentation

Features & Goals

  • Multiple storage adapters (Local, FTP, Amazon S3, Dropbox, DO Spaces, Azure Blob and many others via Flysystem)
  • Multiple auth adapters with roles and permissions (Store users in json file, database or use WordPress)
  • Multiple session adapters (Native File, Pdo, Redis, MongoDB, Memcached and others via Symfony)
  • Single page front-end (built with Vuejs, Bulma and Buefy)
  • Chunked uploads (built with Resumable.js)
  • Zip and bulk download support
  • Highly extensible, decoupled and tested code
  • No database required
  • Framework free

Limitations

  • Symlinks are not supported by the underlying Flysystem
  • File permission operations are not supported (chmod/chown)

Minimum Requirements

  • PHP 7.2.5+ (with php-zip extension)

See install instructions for Ubuntu 18.04 or Debian 10.3. Get $100 in (server credits here) so you can play around.

Download precompiled build

Precompiled build is created for non-developers. In this version, the frontend (html, css and javascript) is compiled for you and the source code is removed so the final archive contains only minimum files.

Download & install instructions

Project setup for development (Linux)

You must have git, php, npm, and composer installed.

git clone https://github.com/filegator/filegator.git
cd filegator
cp configuration_sample.php configuration.php
chmod -R 775 private/
chmod -R 775 repository/
composer install --ignore-platform-reqs
npm install
npm run build

Compiles and hot-reloads

The following command will launch backend and frontend on ports 8081 and 8080:

npm run serve

Once everything is ready visit: http://localhost:8080

Run tests & static analysis

Testing requires xdebug, php-zip and sqlite php extensions.

vendor/bin/phpunit
vendor/bin/phpstan analyse ./backend
npm run lint
npm run e2e

Deployment

Set the website document root to /dist directory. This is also known as 'public' folder.

NOTE: For security reasons /dist is the ONLY folder you want to be exposed through the web. Everything else should be outside of your web root, this way people can’t access any of your important files through the browser.

Show your support

Please ⭐️ this repository if this project helped you!

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

License

Copyright (c) 2019 Milos Stojanovic.

This project is MIT licensed.

Comments
  • Bug report

    Bug report

    Describe the bug Unable to connect AWS S3 Bucket

    Logs [2021-12-04 11:07:47] default.ALERT: Fatal Error (E_ERROR): Uncaught Error: Class 'Aws\S3\S3Client' not found in /var/www/filegator/configuration.php:110 Stack trace: #0 /var/www/filegator/backend/Services/Storage/Filesystem.php(32): {closure}() #1 /var/www/filegator/backend/App.php(33): Filegator\Services\Storage\Filesystem->init() #2 /var/www/filegator/dist/index.php(53): Filegator\App->__construct() #3 {main} thrown {"code":1,"message":"Uncaught Error: Class 'Aws\S3\S3Client' not found in /var/www/filegator/configuration.php:110\nStack trace:\n#0 /var/www/filegator/backend/Services/Storage/Filesystem.php(32): {closure}()\n#1 /var/www/filegator/backend/App.php(33): Filegator\Services\Storage\Filesystem->init()\n#2 /var/www/filegator/dist/index.php(53): Filegator\App->__construct()\n#3 {main}\n thrown","file":"/var/www/filegator/configuration.php","line":110,"trace":null} []

    Environment (please complete the following information):

    • FileGator Version - 7.7
    • Server:AWS Instance - Ubuntu 20.04 (S3 role applied to instance)
    • PHP Version 7.4.3

    Installed as per instructions

    Updated to composer 2 within /var/www/filegator sudo composer require league/flysystem-aws-s3-v3 -W (cant without sudo)

    commented out current filesystem in /var/www/filegator/configuration.php

    Added

            'Filegator\Services\Storage\Filesystem' => [
                'handler' => '\Filegator\Services\Storage\Filesystem',
                'config' => [
                    'separator' => '/',
                    'config' => [],
                    'adapter' => function () {
                        $client = new \Aws\S3\S3Client([
                            'region' => 'eu-west-1',
                            'version' => 'latest',
                        ]);
    
                        return new \League\Flysystem\AwsS3v3\AwsS3Adapter($client, 'storagebucket');
                    },
                ],
            ],
    

    As the ec2 has the s3 role says dont need credentials.

    Any ideas?

    opened by Pilly170 11
  • Exception from Symphony on start if session already active

    Exception from Symphony on start if session already active

    Describe the bug I've added a link to filegator from our menu, but running into a problem having to do with the session. We already have a session active and used to track the user, so when Filegator tries to load I get the following error:

    Fatal error: Uncaught LogicException: Cannot change the name of an active session. in C:\XFER\filegator\vendor\symfony\http-foundation\Session\Storage\Proxy\AbstractProxy.php:117 Stack trace: #0 C:\XFER\filegator\vendor\symfony\http-foundation\Session\Storage\NativeSessionStorage.php(201): Symfony\Component\HttpFoundation\Session\Storage\Proxy\AbstractProxy->setName('filegator') #1 C:\XFER\filegator\vendor\symfony\http-foundation\Session\Session.php(223): Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->setName('filegator') #2 C:\XFER\filegator\backend\Services\Session\Adapters\SessionStorage.php(35): Symfony\Component\HttpFoundation\Session\Session->setName('filegator') #3 C:\XFER\filegator\backend\App.php(33): Filegator\Services\Session\Adapters\SessionStorage->init(Array) #4 C:\XFER\filegator\dist\index.php(53): Filegator\App->__construct(Object(Filegator\Config\Config), Object(Filegator\Kernel\Request), Object(Filegator\Kernel\Response), Object(Filegator\Kernel\StreamedResponse), Object(Filegator in C:\XFER\filegator\vendor\symfony\http-foundation\Session\Storage\Proxy\AbstractProxy.php on line 117

    To Reproduce Happens on load

    Expected behavior A clear and concise description of what you expected to happen.

    Screenshots If applicable, add screenshots to help explain your problem.

    Logs Log contains only the error above

    Environment (please complete the following information):

    • Server: IIS
    • PHP Version 7.2.14

    Additional context

    Ideally, we'd turn off sessions in FileGator. We don't want it to remember anything like last folder or anything else. Not sure that's an option though.

    opened by Gerdofal 10
  • Docker container issue: Folder not writable: /private/logs/

    Docker container issue: Folder not writable: /private/logs/

    Docker container created out of the image from your Docker file is not working properly - after accessing website, it says:

    Folder not writable: /private/logs/

    opened by s-kaczmarek 9
  • Translations file

    Translations file

    Hi! It would be a problem that I made a Hungarian language file but it doesn't load. It is not displayed in Hungarian. I did it based on the description but it doesn't work. The languages that are in it work with the change.

    opened by zsolti19850610 9
  • How do i attach the s3 storage adapter?

    How do i attach the s3 storage adapter?

    i looked at your documentation already , as well as the flysystems doc . i installed the ("composer require league/flysystem-aws-s3-v3"). But still am confused where to put the html code you gave in your doc , I tried putting it in the configuration.php file doesnt work.

    can anyone help me try install the s3 adapter

    opened by larslight11 9
  • Bug report: Search function is causing problems

    Bug report: Search function is causing problems

    Describe the bug

    When using the search function, many parallel running PHP processes are opened to search recursively. Depending on the amount of processes, that can cause a server to crash.

    To Reproduce

    1. Open Filegator
    2. Search for a file
    3. See error

    Expected behavior

    Only submit the folder to be searched in and then from there search recursively within the same PHP process.

    Environment

    • FileGator Version: 7.5.2
    • Server: Apache 2.4.41 on Debian Linux
    • PHP Version: PHP 7.4
    • Browser: Chrome, Firefox
    opened by tobiasgruber1995 8
  • how to rename a file without opening the directory tree

    how to rename a file without opening the directory tree

    Hello, is there any way to rename a file without opening the tree with all the root directories?

    renameItem: function(e) {
    				return new Promise((function(a, n) {
    					d.a.post("renameitem", {
    						from: e.from,
    						to: e.to,
    						destination: e.destination
    					}).then((function(e) {
    						return a(e.data.data)
    					}))["catch"]((function(e) {
    						return n(e)
    					}))
    				}))
    			},
    
    opened by kainpro 8
  • Enabling Private Repos results in fatal error

    Enabling Private Repos results in fatal error

    Enabling this setting in configuration.php: 'private_repos' => true,

    Results in this error: Fatal error: Uncaught Error: Call to a member function setHomedir() on array in /usr/local/apache2/htdocs/filegator/backend/Services/Auth/Adapters/LDAP.php:213 Stack trace: #0 /usr/local/apache2/htdocs/filegator/backend/Services/Auth/Adapters/LDAP.php(113): Filegator\Services\Auth\Adapters\LDAP->getUsers() #1 /usr/local/apache2/htdocs/filegator/backend/Services/Auth/Adapters/LDAP.php(124): Filegator\Services\Auth\Adapters\LDAP->find('guest') #2 /usr/local/apache2/htdocs/filegator/backend/Services/Router/Router.php(33): Filegator\Services\Auth\Adapters\LDAP->getGuest() #3 /usr/local/apache2/htdocs/filegator/vendor/php-di/php-di/src/Definition/Resolver/ObjectCreator.php(143): Filegator\Services\Router\Router->__construct(Object(Filegator\Kernel\Request), Object(Filegator\Services\Auth\Adapters\LDAP), Object(Filegator\Container\Container)) #4 /usr/local/apache2/htdocs/filegator/vendor/php-di/php-di/src/Definition/Resolver/ObjectCreator.php(71): DI\Definition\Resolver\ObjectCreator->createInstance(Object(DI\Definition\ObjectD in /usr/local/apache2/htdocs/filegator/backend/Services/Auth/Adapters/LDAP.php on line 213

    I'm using v7.6.0.

    opened by Timbo1966 7
  • MP4 video is displayed

    MP4 video is displayed "inline" even though the mp4 extension is not in the "inline downloads" conf

    Describe the bug

    When I click on an mp4 video, it is displayed "inline" as a text, which shows garbarge

    To Reproduce Steps to reproduce the behavior:

    1. Put mp4 in your data folder
    2. Click on it in the filegator UI
    3. see garbage in the preview interface

    Expected behavior

    Either a download is triggered or the browser embeds a video and plays it

    Screenshots

    image

    Logs

    None seem relevant

    My conf has 'download_inline' => ['pdf'], // download inline in the browser, array of extensions, use * for all

    Environment (please complete the following information):

    • FileGator Version 7.4.5
    • Server: php:apache docker image
    • PHP Version: php:apache docker image (last php 7 I expect?)
    • Browser Firefox

    Additional context

    opened by Gui13 7
  • Zip file is invalid

    Zip file is invalid

    Describe the bug I get an error saying "the zip file is invalid", when trying to download from the test installation on my domaine.

    To Reproduce Steps to reproduce the behavior: Downloaded filegator from https://filegator.io/ Installed on local server using '

    • xampp
    • php version 8.1.6
    • zip version 1.19.5 and the zip-file works fine.

    I then upload to my domain

    • php 8.0.21
    • zip version 1.19.5 then I get the error "zip file is invalid".

    Expected behavior Working zip file. There is no problem when using the demo on https://demo.filegator.io/#/

    Environment (please complete the following information):

    • FileGator Version latest
    • Browser chrome

    Please let my know if you need any more information.

    opened by brjdk 6
  • Attempting to us FileGator on OSX Monterey (12.1)

    Attempting to us FileGator on OSX Monterey (12.1)

    So I have been attempting to put FileGator on OSX with Apache2 and PHP, as you can see from phpinfo.pdf attached both are working. However when launching filegator i get a few execptions. I am not smart enough to understand what is wrong or missing hoping you can point toward solution to make this work.

    Thanks

    PHP 8.1.2 - phpinfo().pdf app.log web.log

    opened by d21000 6
  • Filegator SEO improve

    Filegator SEO improve

    Previously I used HTML directory listing to publish some files on my website. Google and other search engines indexed our PDF and other files.

    Then we started using Filegator, but the files are not indexed anymore. Old indexes are also deleted, and new ones are not added.

    Is anyone experiencing similar problems? How can I improve SEO?

    opened by mrzcn 0
  • Bump express from 4.17.1 to 4.18.2

    Bump express from 4.17.1 to 4.18.2

    Bumps express from 4.17.1 to 4.18.2.

    Release notes

    Sourced from express's releases.

    4.18.2

    4.18.1

    • Fix hanging on large stack of sync routes

    4.18.0

    ... (truncated)

    Changelog

    Sourced from express's changelog.

    4.18.2 / 2022-10-08

    4.18.1 / 2022-04-29

    • Fix hanging on large stack of sync routes

    4.18.0 / 2022-04-25

    ... (truncated)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 1
  • Bump qs from 6.5.2 to 6.5.3

    Bump qs from 6.5.2 to 6.5.3

    Bumps qs from 6.5.2 to 6.5.3.

    Changelog

    Sourced from qs's changelog.

    6.5.3

    • [Fix] parse: ignore __proto__ keys (#428)
    • [Fix] utils.merge: avoid a crash with a null target and a truthy non-array source
    • [Fix] correctly parse nested arrays
    • [Fix] stringify: fix a crash with strictNullHandling and a custom filter/serializeDate (#279)
    • [Fix] utils: merge: fix crash when source is a truthy primitive & no options are provided
    • [Fix] when parseArrays is false, properly handle keys ending in []
    • [Fix] fix for an impossible situation: when the formatter is called with a non-string value
    • [Fix] utils.merge: avoid a crash with a null target and an array source
    • [Refactor] utils: reduce observable [[Get]]s
    • [Refactor] use cached Array.isArray
    • [Refactor] stringify: Avoid arr = arr.concat(...), push to the existing instance (#269)
    • [Refactor] parse: only need to reassign the var once
    • [Robustness] stringify: avoid relying on a global undefined (#427)
    • [readme] remove travis badge; add github actions/codecov badges; update URLs
    • [Docs] Clean up license text so it’s properly detected as BSD-3-Clause
    • [Docs] Clarify the need for "arrayLimit" option
    • [meta] fix README.md (#399)
    • [meta] add FUNDING.yml
    • [actions] backport actions from main
    • [Tests] always use String(x) over x.toString()
    • [Tests] remove nonexistent tape option
    • [Dev Deps] backport from main
    Commits
    • 298bfa5 v6.5.3
    • ed0f5dc [Fix] parse: ignore __proto__ keys (#428)
    • 691e739 [Robustness] stringify: avoid relying on a global undefined (#427)
    • 1072d57 [readme] remove travis badge; add github actions/codecov badges; update URLs
    • 12ac1c4 [meta] fix README.md (#399)
    • 0338716 [actions] backport actions from main
    • 5639c20 Clean up license text so it’s properly detected as BSD-3-Clause
    • 51b8a0b add FUNDING.yml
    • 45f6759 [Fix] fix for an impossible situation: when the formatter is called with a no...
    • f814a7f [Dev Deps] backport from main
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 1
  • Bump decode-uri-component from 0.2.0 to 0.2.2

    Bump decode-uri-component from 0.2.0 to 0.2.2

    Bumps decode-uri-component from 0.2.0 to 0.2.2.

    Release notes

    Sourced from decode-uri-component's releases.

    v0.2.2

    • Prevent overwriting previously decoded tokens 980e0bf

    https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2

    v0.2.1

    • Switch to GitHub workflows 76abc93
    • Fix issue where decode throws - fixes #6 746ca5d
    • Update license (#1) 486d7e2
    • Tidelift tasks a650457
    • Meta tweaks 66e1c28

    https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.0...v0.2.1

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 1
  • default folders ad mark empthy folders

    default folders ad mark empthy folders

    Sorry - I can't figure out how to ask questions / requests in github / filegator. So please instruct me to do it the right way :-)

    DEFAULT FOLDERS I wonder if its possible to config filegator, to add defualt folders, if one presses "+new" in the root? I use a setup with default folders, all empty, but that I would like to be created by default. Right now I try to create them by using drag and drop - but it seems thats not possible, when folders contain subfolders :-/

    EMPTHY FOLDERS I would like to request a setting that allows empthy foldes to be grayed out.

    thanks :-)

    opened by brjdk 0
  • Bump ejs and @vue/cli-service

    Bump ejs and @vue/cli-service

    Removes ejs. It's no longer used after updating ancestor dependency @vue/cli-service. These dependencies need to be updated together.

    Removes ejs

    Updates @vue/cli-service from 4.3.1 to 5.0.8

    Release notes

    Sourced from @​vue/cli-service's releases.

    v5.0.8

    :bug: Bug Fix

    v5.0.7

    • @vue/cli-service
    • @vue/cli-ui
      • #7210 chore: upgrade to apollo-server-express 3.x

    Committers: 2

    v5.0.6

    Fix compatibility with the upcoming Vue 2.7 (currently in alpha) and Vue Loader 15.10 (currently in beta).

    In Vue 2.7, vue-template-compiler is no longer a required peer dependency. Rather, there's a new export under the main package as vue/compiler-sfc.

    v5.0.5

    :bug: Bug Fix

    • @vue/cli
      • #7167 fix(upgrade): prevent changing the structure of package.json file during upgrade (@​blzsaa)
    • @vue/cli-service
    • @vue/cli-plugin-e2e-cypress
      • [697bb44] fix: should correctly resolve cypress bin path for Cypress 10 (Note that the project is still created with Cypress 9 by default, but you can upgrade to Cypress 10 on your own now)

    Committers: 3

    v5.0.4

    :bug: Bug Fix

    • @vue/cli-service
    • @vue/cli-shared-utils, @vue/cli-ui
      • 75826d6 fix: replace node-ipc with @achrinza/node-ipc to further secure the dependency chain

    Committers: 1

    v5.0.3

    ... (truncated)

    Changelog

    Sourced from @​vue/cli-service's changelog.

    5.0.7 (2022-07-05)

    • @vue/cli-service
    • @vue/cli-ui
      • #7210 chore: upgrade to apollo-server-express 3.x

    Committers: 2

    5.0.6 (2022-06-16)

    Fix compatibility with the upcoming Vue 2.7 (currently in alpha) and Vue Loader 15.10 (currently in beta).

    In Vue 2.7, vue-template-compiler is no longer a required peer dependency. Rather, there's a new export under the main package as vue/compiler-sfc.

    5.0.5 (2022-06-16)

    :bug: Bug Fix

    • @vue/cli
      • #7167 feat(upgrade): prevent changing the structure of package.json file during upgrade (@​blzsaa)
    • @vue/cli-service

    Committers: 3

    5.0.4 (2022-03-22)

    :bug: Bug Fix

    • @vue/cli-service
    • @vue/cli-shared-utils, @vue/cli-ui
      • 75826d6 fix: replace node-ipc with @achrinza/node-ipc to further secure the dependency chain

    Committers: 1

    ... (truncated)

    Commits
    • b154dbd v5.0.8
    • 0260e4d fix: add devServer.server.type to useHttps judgement (#7222)
    • 4a0655f v5.0.7
    • beffe8a fix: allow disabling progress plugin via devServer.client.progress
    • 558dea2 fix: support devServer.server option, avoid deprecation warning
    • bddd64d fix: optimize the judgment on whether HTTPS has been set in options (#7202)
    • ef08a08 v5.0.6
    • fcf27e3 fixup! fix: compatibility with Vue 2.7
    • a648958 fix: compatibility with Vue 2.7
    • 98c66c9 v5.0.5
    • Additional commits viewable in compare view

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 0
Releases(v7.8.7)
Owner
FileGator
Powerful Multi-User File Manager
FileGator
PictShare is an open source image, mp4, pastebin hosting service with a simple resizing and upload API that you can host yourself.

PictShare is an open source image, mp4, pastebin hosting service with a simple resizing and upload API that you can host yourself.

Haschek Solutions 709 Jan 3, 2023
A Flysystem proxy adapter that enables compression and encryption of files and streams on the fly

Slam / flysystem-compress-and-encrypt-proxy Compress and Encrypt files and streams before saving them to the final Flysystem destination. Installation

Filippo Tessarotto 27 Jun 4, 2022
A web based file manager,web IDE / browser based code editor

KodExplorer Update to kodbox: https://github.com/kalcaddle/kodbox Download | Demo It is recommended to use a new design upgrade product:kodbox 该项目处于维护

warlee 5.8k Jan 3, 2023
This small PHP package assists in the loading and parsing of VTT files.

VTT Transcriptions This small PHP package assists in the loading and parsing of VTT files. Usage use Laracasts\Transcriptions\Transcription; $transcr

Laracasts 52 Nov 28, 2022
PHP library that provides a filesystem abstraction layer − will be a feast for your files!

Gaufrette Gaufrette provides a filesystem abstraction layer. Why use Gaufrette? Imagine you have to manage a lot of medias in a PHP project. Lets see

KNP Labs 2.4k Jan 7, 2023
PHP runtime & extensions header files for PhpStorm

phpstorm-stubs STUBS are normal, syntactically correct PHP files that contain function & class signatures, constant definitions, etc. for all built-in

JetBrains 1.2k Dec 25, 2022
ANTLR (ANother Tool for Language Recognition) is a powerful parser generator for reading, processing, executing, or translating structured text or binary files.

ANTLR (ANother Tool for Language Recognition) is a powerful parser generator for reading, processing, executing, or translating structured text or binary files. It's widely used to build languages, tools, and frameworks. From a grammar, ANTLR generates a parser that can build parse trees and also generates a listener interface (or visitor) that makes it easy to respond to the recognition of phrases of interest.

Antlr Project 13.6k Jan 6, 2023
Tailwind plugin to generate purge-safe.txt files

Tailwind plugin to generate safelist.txt files With tailwind-safelist-generator, you can generate a safelist.txt file for your theme based on a set of

Spatie 89 Dec 23, 2022
Associate files with Eloquent models

Associate files with Eloquent models This package can associate all sorts of files with Eloquent models. It provides a simple API to work with. To lea

Spatie 5.2k Jan 4, 2023
This package used to upload files using laravel-media-library before saving model.

Laravel Media Uploader This package used to upload files using laravel-media-library before saving model. In this package all uploaded media will be p

Ahmed Fathy 312 Dec 12, 2022
A python program to cut longer MP3 files (i.e. recordings of several songs) into the individual tracks.

I'm writing a python script to cut longer MP3 files (i.e. recordings of several songs) into the individual tracks called ReCut. So far there are two

Dönerspiess 1 Oct 27, 2021
FileNamingResolver - A lightweight library which helps to resolve a file/directory naming of uploaded files using various naming strategies

FileNamingResolver - A lightweight library which helps to resolve a file/directory naming of uploaded files using various naming strategies

Victor Bocharsky 111 May 19, 2022
kodbox is a file manager for web. It is a newly designed product based on kodexplorer.

kodbox is a file manager for web. It is a newly designed product based on kodexplorer. It is also a web code editor, which allows you to develop websites directly within the web browser.You can run kodbox either online or locally,on Linux, Windows or Mac based platforms

warlee 1.2k Jan 7, 2023
Private file storage and share with user build with laravel and vue inspired by google drive

LaravelDrive is a file storage system that allows store private file and share with users build wiht laravel and vue inspired by google drive. Laravel

Shahadat Hossain 70 Dec 22, 2022
Laravel Flysystem was created by, and is maintained by Graham Campbell, and is a Flysystem bridge for Laravel.

Laravel Flysystem Laravel Flysystem was created by, and is maintained by Graham Campbell, and is a Flysystem bridge for Laravel. It utilises my Larave

Graham Campbell 492 Feb 4, 2022
Abstraction for local and remote filesystems

League\Flysystem About Flysystem Flysystem is a file storage library for PHP. It provides one interface to interact with many types of filesystems. Wh

The League of Extraordinary Packages 12.7k Dec 30, 2022
Detects file type by filename or content and generates correct mimetype.

FileTypeDetector Files type detector based on file name extension or file content (binary content). Usage Installation Supported formats Usage File Ty

Sergey 31 Oct 6, 2022