This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up See merge request fluxfw/SrUserEnrolmentCron!19
- Loading branch information
Showing
23 changed files
with
26 additions
and
1,489 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 |
---|---|---|
@@ -1,9 +1,3 @@ | ||
.idea | ||
**/lang/* | ||
!**/lang/ilias_de.lang | ||
!**/lang/ilias_en.lang | ||
#LuceneObjectDefinition.xml | ||
#node_modules | ||
#plugin.php | ||
#plugin.xml | ||
#vendor |
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,7 +1,15 @@ | ||
FluxPublishUtils: | ||
stage: build | ||
image: docker-registry.fluxpublisher.ch/flux-publish-utils:latest | ||
script: | ||
- "false" | ||
only: | ||
- /^main$/ | ||
stages: | ||
- publish-utils | ||
|
||
publish-utils: | ||
stage: publish-utils | ||
image: php:cli-alpine | ||
script: | ||
- (if [ ! -d flux-publish-utils ]; then mkdir -p flux-publish-utils && cd flux-publish-utils && wget -O - https://github.com/fluxfw/flux-publish-utils/releases/download/v2022-07-12-1/flux-publish-utils-v2022-07-12-1-build.tar.gz | tar -xz --strip-components=1; fi) | ||
- flux-publish-utils/bin/publish-utils.php | ||
cache: | ||
key: publish-utils | ||
paths: | ||
- flux-publish-utils | ||
only: | ||
- main |
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,5 +1,8 @@ | ||
# Changelog | ||
|
||
## [1.3.0] | ||
- Clean up | ||
|
||
## [1.2.0] | ||
- Switched to main branch | ||
- ILIAS 7 support | ||
|
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,36 +1,17 @@ | ||
{ | ||
"name": "srag/sruserenrolmentcron", | ||
"description": "Cron jobs for enrol by rule and enrolment workflow", | ||
"version": "1.2.0", | ||
"extra": { | ||
"ilias_plugin": { | ||
"id": "srusrenrcron", | ||
"name": "SrUserEnrolmentCron", | ||
"ilias_min_version": "6.0", | ||
"ilias_max_version": "7.999", | ||
"slot": "Services/Cron/CronHook" | ||
} | ||
}, | ||
"version": "1.3.0", | ||
"type": "project", | ||
"keywords": [ | ||
"cron", | ||
"ilias", | ||
"job", | ||
"plugin" | ||
], | ||
"homepage": "https://github.com/fluxapps/SrUserEnrolmentCron", | ||
"license": "GPL-3.0-only", | ||
"authors": [ | ||
{ | ||
"name": "fluxlabs", | ||
"email": "[email protected]", | ||
"homepage": "https://fluxlabs.ch", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.2", | ||
"srag/generateplugininfoshelper": ">=0.1.0", | ||
"srag/librariesnamespacechanger": ">=0.1.0" | ||
}, | ||
"autoload": { | ||
|
@@ -51,11 +32,7 @@ | |
}, | ||
"scripts": { | ||
"pre-autoload-dump": [ | ||
"srag\\LibrariesNamespaceChanger\\LibrariesNamespaceChanger::rewriteLibrariesNamespaces", | ||
"srag\\GeneratePluginInfosHelper\\SrUserEnrolmentCron\\GeneratePluginPhpAndXml::generatePluginPhpAndXml" | ||
], | ||
"update-version": [ | ||
"srag\\GeneratePluginInfosHelper\\SrUserEnrolmentCron\\UpdateVersion::updateVersion" | ||
"srag\\LibrariesNamespaceChanger\\LibrariesNamespaceChanger::rewriteLibrariesNamespaces" | ||
] | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,11 +1,10 @@ | ||
<?php | ||
// Autogenerated from composer.json - All changes will be overridden if generated again! | ||
|
||
require_once __DIR__ . "/vendor/autoload.php"; | ||
|
||
$id = "srusrenrcron"; | ||
$version = "1.2.0"; | ||
$version = "1.3.0"; | ||
$ilias_min_version = "6.0"; | ||
$ilias_max_version = "7.999"; | ||
$responsible = "fluxlabs"; | ||
$responsible_mail = "[email protected]"; | ||
$responsible = ""; | ||
$responsible_mail = ""; | ||
$supports_cli_setup = false; |
This file was deleted.
Oops, something went wrong.
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
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,51 +1,4 @@ | ||
[ | ||
{ | ||
"name": "srag/generateplugininfoshelper", | ||
"version": "2.12.0", | ||
"version_normalized": "2.12.0.0", | ||
"source": { | ||
"type": "git", | ||
"url": "https://github.com/fluxapps/GeneratePluginInfosHelper.git", | ||
"reference": "ac48769122303e52c757f581c1b7d68a03acc640" | ||
}, | ||
"dist": { | ||
"type": "zip", | ||
"url": "https://api.github.com/repos/fluxapps/GeneratePluginInfosHelper/zipball/ac48769122303e52c757f581c1b7d68a03acc640", | ||
"reference": "ac48769122303e52c757f581c1b7d68a03acc640", | ||
"shasum": "" | ||
}, | ||
"require": { | ||
"php": ">=7.2" | ||
}, | ||
"time": "2021-07-20T08:32:36+00:00", | ||
"type": "library", | ||
"installation-source": "dist", | ||
"autoload": { | ||
"psr-4": { | ||
"srag\\GeneratePluginInfosHelper\\SrUserEnrolmentCron\\": "src/" | ||
} | ||
}, | ||
"notification-url": "https://packagist.org/downloads/", | ||
"license": [ | ||
"GPL-3.0-only" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "fluxlabs", | ||
"email": "[email protected]", | ||
"homepage": "https://fluxlabs.ch", | ||
"role": "Developer" | ||
} | ||
], | ||
"description": "Automatic generate plugin infos such README.md, plugin.php, plugin.xml, ... from composer.json", | ||
"homepage": "https://github.com/fluxapps/GeneratePluginInfosHelper", | ||
"keywords": [ | ||
"Infos", | ||
"generate", | ||
"helper", | ||
"plugin" | ||
] | ||
}, | ||
{ | ||
"name": "srag/librariesnamespacechanger", | ||
"version": "0.16.1", | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.