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
<?php | |
/** | |
* @file tools/event/listEvents.php | |
* | |
* Copyright (c) 2014-2021 Simon Fraser University | |
* Copyright (c) 2003-2021 John Willinsky | |
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. | |
* | |
* @class listEvents |
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
version: "3.8" | |
services: | |
pkp-db: | |
container_name: pkp-db | |
image: mariadb:latest | |
environment: | |
MYSQL_ROOT_PASSWORD: "iluvdonuts" | |
MYSQL_DATABASE: pkp | |
ports: | |
- "3306:3306" |
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
From ed0e858edf5aee055a0611da5ba1205b47e627c6 Mon Sep 17 00:00:00 2001 | |
From: Henrique Ramos <[email protected]> | |
Date: Fri, 1 Oct 2021 15:11:59 -0300 | |
Subject: [PATCH] pkp/pkp-lib#7125 Setting Guzzle to avoid SSL certificate | |
verification | |
--- | |
classes/core/PKPApplication.inc.php | 1 + | |
1 file changed, 1 insertion(+) |
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
diff --git a/Jobs/Notifications/TrivialNotificationJob.php b/Jobs/Notifications/TrivialNotificationJob.php | |
new file mode 100644 | |
index 000000000..36a63ef88 | |
--- /dev/null | |
+++ b/Jobs/Notifications/TrivialNotificationJob.php | |
@@ -0,0 +1,70 @@ | |
+<?php | |
+ | |
+declare(strict_types=1); | |
+ |
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
# There's two commands below. | |
# The first one its the phpcs CLI, on this, we will use the following parameters | |
# --extensions=php, --encoding=utf-8, --tab-width=4, -p to show progress of the run, -s to show sniff codes in all reports and -v to print processed files | |
# The second one its the git diff to display, on this, we will use the following parameters | |
# --name-only to retrieve only the filenames | |
# --no-color to remove any ASCII fancy color | |
# --diff-filter=ACMRTUXB to show only Added, Copied, Modified, Renamed, Type Changed, Unmerged, Unknown and Broke pairing files. More information here: https://git-scm.com/docs/git-diff#Documentation/git-diff.txt---diff-filterACDMRTUXB82308203 | |
vendor/bin/phpcs --extensions=php --encoding=utf-8 --tab-width=4 -spv $(git diff --name-only --no-color --diff-filter=ACMRTUXB) |
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 is a sample build configuration for PHP. | |
# Check our guides at https://confluence.atlassian.com/x/e8YWN for more examples. | |
# Only use spaces to indent your .yml configuration. | |
# You can specify a custom docker image from Docker Hub as your build environment. | |
# run composer check-platform-reqs for a list of required extensions. | |
image: php:7.2-fpm | |
pipelines: | |
default: | |
# Not needed unless you're doing feature tests. | |
# - step: |
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
# :lat as your requested latitude | |
# :lon as your requested longitude | |
# :r as your Earth's radius - Could be 6371 for KM or 3959 for miles | |
# :rad as your radius search distance | |
SELECT | |
`userId`, | |
`name`, | |
`address`, | |
AsText(`spatialData`) AS 'spatialData', |
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
<?php | |
/** | |
* Class WebinarJam | |
* Implements the WebinarJam API as documented | |
* https://s3.amazonaws.com/webinarjam/files/WebinarJamAPI.pdf | |
*/ | |
class WebinarJam { | |
public static $API_URL = 'https://app.webinarjam.com/api/v2/'; |