-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
1,093 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ composer.phar | |
composer.lock | ||
docker/uguuForDocker.tar.gz | ||
!/.php-cs-fixer.cache | ||
test.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
<?php | ||
/** | ||
/* | ||
* Uguu | ||
* | ||
* @copyright Copyright (c) 2022-2023 Go Johansson (nokonoko) <[email protected]> | ||
* @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <[email protected]> | ||
* | ||
* Note that this was previously distributed under the MIT license 2015-2022. | ||
* | ||
* If you are a company that wants to use Uguu I urge you to contact me to | ||
* solve any potential license issues rather then using pre-2022 code. | ||
* | ||
* A special thanks goes out to the open source community around the world | ||
* for supporting and being the backbone of projects like Uguu. | ||
* | ||
* This project can be found at <https://github.com/nokonoko/Uguu>. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
@@ -71,7 +81,7 @@ public function __construct() | |
$this->DB = new PDO( | ||
$this->CONFIG['DB_MODE'] . ':' . $this->CONFIG['DB_PATH'], | ||
$this->CONFIG['DB_USER'], | ||
$this->CONFIG['DB_PASS'] | ||
$this->CONFIG['DB_PASS'], | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
<?php | ||
/** | ||
/* | ||
* Uguu | ||
* | ||
* @copyright Copyright (c) 2022-2023 Go Johansson (nokonoko) <[email protected]> | ||
* @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <[email protected]> | ||
* | ||
* Note that this was previously distributed under the MIT license 2015-2022. | ||
* | ||
* If you are a company that wants to use Uguu I urge you to contact me to | ||
* solve any potential license issues rather then using pre-2022 code. | ||
* | ||
* A special thanks goes out to the open source community around the world | ||
* for supporting and being the backbone of projects like Uguu. | ||
* | ||
* This project can be found at <https://github.com/nokonoko/Uguu>. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
<?php | ||
/** | ||
/* | ||
* Uguu | ||
* | ||
* @copyright Copyright (c) 2022-2023 Go Johansson (nokonoko) <[email protected]> | ||
* @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <[email protected]> | ||
* | ||
* Note that this was previously distributed under the MIT license 2015-2022. | ||
* | ||
* If you are a company that wants to use Uguu I urge you to contact me to | ||
* solve any potential license issues rather then using pre-2022 code. | ||
* | ||
* A special thanks goes out to the open source community around the world | ||
* for supporting and being the backbone of projects like Uguu. | ||
* | ||
* This project can be found at <https://github.com/nokonoko/Uguu>. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
@@ -172,5 +182,4 @@ public function checkRateLimit(array $fingerPrintInfo, int $rateTimeout, int $fi | |
} | ||
return false; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
<?php | ||
/** | ||
/* | ||
* Uguu | ||
* | ||
* @copyright Copyright (c) 2022-2023 Go Johansson (nokonoko) <[email protected]> | ||
* @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <[email protected]> | ||
* | ||
* Note that this was previously distributed under the MIT license 2015-2022. | ||
* | ||
* If you are a company that wants to use Uguu I urge you to contact me to | ||
* solve any potential license issues rather then using pre-2022 code. | ||
* | ||
* A special thanks goes out to the open source community around the world | ||
* for supporting and being the backbone of projects like Uguu. | ||
* | ||
* This project can be found at <https://github.com/nokonoko/Uguu>. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
<?php | ||
/** | ||
/* | ||
* Uguu | ||
* | ||
* @copyright Copyright (c) 2022-2023 Go Johansson (nokonoko) <[email protected]> | ||
* @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <[email protected]> | ||
* | ||
* Note that this was previously distributed under the MIT license 2015-2022. | ||
* | ||
* If you are a company that wants to use Uguu I urge you to contact me to | ||
* solve any potential license issues rather then using pre-2022 code. | ||
* | ||
* A special thanks goes out to the open source community around the world | ||
* for supporting and being the backbone of projects like Uguu. | ||
* | ||
* This project can be found at <https://github.com/nokonoko/Uguu>. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
Oops, something went wrong.