Download the PHP package itsaninho/filemanager without Composer

On this page you can find all versions of the php package itsaninho/filemanager. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package filemanager

Filemanager

Filemanager package for Laravel

Installation

To install, run the following in your project directory:

Then in config/app.php add the following to the providers array:

Also in config/app.php, add the Facade class to the aliases array:

Configuration

To publish Filemanager's configuration file, run the following vendor:publish command:

Now for token encryption, I need to generate a secret key by running following line of code :

Now I will create middleware to check if the token is valid or not and also You can handle the exception if the token is expired.

Using this middleware, you can filter the request and validate the JWT token. Now open your VerifyJWTToken middleware and put below line of code.

app/Http/Middleware/VerifyJWTToken.php pop-uptext

The try block in handle method check if requested token is verified by JWTAuth or not if it is not verified then exception will be handled in catch block with their status.

Now register this middleware in your kernal to run during every HTTP request to your application. app/Http/Kernel.php

Usage

Add from ENV file:

FILEMANAGER_LOCATION - File manager location

FILEMANAGER_LOCATION=filemanager

Available routes

To work with the file manager you need to login by POST method, send an email address and password to this route to authorize and receive a token

http.youdomain.com/auth/login

File Manager Routes

All file manager paths have a prefix 'filemanager'

example:

method GET http.youdomain.com/filemanager this method open filemanager and scan him

method POST http.youdomain.com/filemanager this method accepts data for sorting items into a file manager

method GET http.youdomain.com/filemanager/folder/{path to folder} this route open this selected folder

method POST http.youdomain.com/filemanager/folder/{path to folder}/create this method create new folder in this directory Need to send data: 'name' where name is name folder

method PUT http.youdomain.com/filemanager/folder/{path to folder}/update this method update(rename folder) selected folder in this directory Need to send data: 'name', 'newname' where 'name' is name selected folder and 'newname' that new name folder

method DELETE http.youdomain.com/filemanager/folder/{path to folder}/delete this method delete selected folder in this directory Need to send data: 'name', where value is name selected folder

method POST http.youdomain.com/filemanager/folder/{path to folder}/changelocation this method change location folder and the attachments in it are files Need to send data: 'from', 'to'. 'from' - address from which of the derivatives, 'to' - where to move

method GET http.youdomain.com/filemanager/folder/{path to file}/file/{filename} this method send file data Need to send data: 'name', where value is name selected folder

method POST http.youdomain.com/filemanager/folder/{path to file}/file/create Need to send: 'name' and 'data' where value name is name file and your expansion, 'data' is content file

method PUT http.youdomain.com/filemanager/folder/{path to file}/file/update Need to send: 'name' and 'data' where value name is name file and your expansion, 'data' is content file

method POST http.youdomain.com/filemanager/folder/{path to file}/file/upload this method upload file

method DELETE http.youdomain.com/filemanager/folder/{path to file}/file/delete Need to send: 'name' and the file is deleted

method POST http.youdomain.com/filemanager/folder/{path to folder}/file/changelocation this method change location file Need to send data: 'from', 'to'. 'from' - address from which of the derivatives, 'to' - where to move

License

The MIT License (MIT). Please see License File for more information."# Filemanager" "# Filemanager"


All versions of filemanager with dependencies

PHP Build Version
Package Version
Requires illuminate/support Version ~5
tymon/jwt-auth Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package itsaninho/filemanager contains the following files

Loading the files please wait ....