mirror of
https://github.com/nokonoko/Uguu.git
synced 2024-01-06 13:35:15 +00:00
minor changes
This commit is contained in:
parent
06790f5ce6
commit
841230530d
20
README.md
20
README.md
@ -1,9 +1,9 @@
|
|||||||
# Uguu
|
# Uguu
|
||||||
|
|
||||||
[](https://sonarcloud.io/dashboard?id=nokonoko_Uguu)
|
[](https://sonarcloud.io/dashboard?id=nokonoko_Uguu)
|
||||||
[](https://www.gnu.org/licenses/gpl-3.0)
|
[](https://www.gnu.org/licenses/gpl-3.0)
|
||||||
[](https://docs.uguu.se)
|
[](https://docs.uguu.se)
|
||||||
|
|
||||||
|
|
||||||
# What is Uguu?
|
# What is Uguu?
|
||||||
|
|
||||||
Uguu is a simple lightweight temporary file hosting and sharing platform, but can also be used as a permanent file host.
|
Uguu is a simple lightweight temporary file hosting and sharing platform, but can also be used as a permanent file host.
|
||||||
@ -14,10 +14,10 @@ Uguu is a simple lightweight temporary file hosting and sharing platform, but ca
|
|||||||
- A minimal, modern web interface
|
- A minimal, modern web interface
|
||||||
- Drag & Drop & Paste supported
|
- Drag & Drop & Paste supported
|
||||||
- Upload API with multiple response choices
|
- Upload API with multiple response choices
|
||||||
- JSON
|
- JSON
|
||||||
- HTML
|
- HTML
|
||||||
- Text
|
- Text
|
||||||
- CSV
|
- CSV
|
||||||
- Supports [ShareX](https://getsharex.com/) and other screenshot tools
|
- Supports [ShareX](https://getsharex.com/) and other screenshot tools
|
||||||
|
|
||||||
### Demo
|
### Demo
|
||||||
@ -26,7 +26,7 @@ See the real world site at [uguu.se](https://uguu.se).
|
|||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
Tested and working with Nginx + PHP-8.0/8.1 + SQLite/MySQL.
|
Tested and working with Nginx + PHP-8.0/8.1 + SQLite/MySQL.
|
||||||
|
|
||||||
Node is used to compile Uguu, after that it runs on PHP.
|
Node is used to compile Uguu, after that it runs on PHP.
|
||||||
|
|
||||||
@ -51,6 +51,14 @@ coding style guides. We use ESLint and PHPCS tools to enforce these standards.
|
|||||||
You can also help by sending us feature requests or writing documentation and
|
You can also help by sending us feature requests or writing documentation and
|
||||||
tests.
|
tests.
|
||||||
|
|
||||||
|
## Upcoming Features
|
||||||
|
|
||||||
|
* PostgreSQL Support
|
||||||
|
* S3 Bucket Support
|
||||||
|
* Azure File Storage Support
|
||||||
|
* Temporal/RR Support
|
||||||
|
*
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
||||||
Uguu is based on [Pomf](http://github.com/pomf/pomf) which was written by Emma Lejack & Go Johansson (nekunekus) and with help from the open source community.
|
Uguu is based on [Pomf](http://github.com/pomf/pomf) which was written by Emma Lejack & Go Johansson (nekunekus) and with help from the open source community.
|
||||||
|
5133
composer.lock
generated
5133
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "uguu",
|
"name": "uguu",
|
||||||
"version": "1.6.0",
|
"version": "1.6.2",
|
||||||
"description": "Uguu is a simple lightweight temporary file host with support for drop, paste, click and API uploading.",
|
"description": "Uguu is a simple lightweight temporary file host with support for drop, paste, click and API uploading.",
|
||||||
"homepage": "https://uguu.se",
|
"homepage": "https://uguu.se",
|
||||||
"repository": {
|
"repository": {
|
||||||
@ -16,7 +16,7 @@
|
|||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/nokonoko/uguu/issues"
|
"url": "https://github.com/nokonoko/uguu/issues"
|
||||||
},
|
},
|
||||||
"devDependencies" : {
|
"devDependencies": {
|
||||||
"ejs": "^3.1.8",
|
"ejs": "^3.1.8",
|
||||||
"minify-all-cli": "^1.0.13",
|
"minify-all-cli": "^1.0.13",
|
||||||
"node-jq": "^2.3.3",
|
"node-jq": "^2.3.3",
|
||||||
|
@ -24,7 +24,6 @@
|
|||||||
"phpunit/phpunit": "^9.5.27",
|
"phpunit/phpunit": "^9.5.27",
|
||||||
"squizlabs/php_codesniffer": "^3.7.1",
|
"squizlabs/php_codesniffer": "^3.7.1",
|
||||||
"phpmd/phpmd": "^2.13.0",
|
"phpmd/phpmd": "^2.13.0",
|
||||||
"friendsofphp/php-cs-fixer": "^v2.19.3",
|
|
||||||
"phpstan/phpstan": "^1.9.3",
|
"phpstan/phpstan": "^1.9.3",
|
||||||
"vimeo/psalm": "^5.2.0"
|
"vimeo/psalm": "^5.2.0"
|
||||||
},
|
},
|
||||||
|
@ -24,7 +24,6 @@
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
(new UploadGateway())->handleFile($_GET['output'], $_FILES['files']);
|
(new UploadGateway())->handleFile($_GET['output'], $_FILES['files']);
|
||||||
}
|
} catch (Exception $e) {
|
||||||
catch (Exception $e) {
|
|
||||||
throw new Exception($e->getMessage(), 500);
|
throw new Exception($e->getMessage(), 500);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user