This repository has been archived by the owner on Jan 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
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
431 changed files
with
148,443 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
vendor/ | ||
sik/ |
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 |
---|---|---|
@@ -0,0 +1,103 @@ | ||
<?php | ||
/** | ||
* @package Jorobo | ||
* | ||
* @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. | ||
* @license GNU General Public License version 2 or later; see LICENSE.txt | ||
*/ | ||
|
||
use Joomla\Jorobo\Tasks\loadTasks; | ||
|
||
if (!defined('JPATH_BASE')) | ||
{ | ||
define('JPATH_BASE', __DIR__); | ||
} | ||
|
||
// PSR-4 Autoload by composer | ||
require_once JPATH_BASE . '/vendor/autoload.php'; | ||
|
||
/** | ||
* Sample RoboFile - adjust to your needs, extend your own | ||
*/ | ||
class RoboFile extends \Robo\Tasks | ||
{ | ||
use loadTasks; | ||
|
||
/** | ||
* Initialize Robo | ||
*/ | ||
public function __construct() | ||
{ | ||
$this->stopOnFail(true); | ||
} | ||
|
||
/** | ||
* Map into Joomla installation. | ||
* | ||
* @param String $target The target joomla instance | ||
* | ||
* @return void | ||
*/ | ||
public function map($target) | ||
{ | ||
(new \Joomla\Jorobo\Tasks\Map($target))->run(); | ||
} | ||
|
||
/** | ||
* Map into Joomla installation. | ||
* | ||
* @param String $target The target joomla instance | ||
* | ||
* @return void | ||
*/ | ||
public function umap($target) | ||
{ | ||
(new \Joomla\Jorobo\Tasks\Umap($target))->run(); | ||
} | ||
|
||
/** | ||
* Build the joomla extension package | ||
* | ||
* @param array $params Additional params | ||
* | ||
* @return void | ||
*/ | ||
public function build($params = ['dev' => false]) | ||
{ | ||
(new \Joomla\Jorobo\Tasks\Build($params))->run(); | ||
} | ||
|
||
/** | ||
* Generate an extension skeleton - not implemented yet | ||
* | ||
* @param array $extensions Extensions to build (com_xy, mod_xy) | ||
* | ||
* @return void | ||
*/ | ||
public function generate($extensions) | ||
{ | ||
(new \Joomla\Jorobo\Tasks\Generate($extensions))->run(); | ||
} | ||
|
||
/** | ||
* Update copyright headers for this project. (Set the text up in the jorobo.ini) | ||
* | ||
* @return void | ||
*/ | ||
public function headers() | ||
{ | ||
(new \Joomla\Jorobo\Tasks\CopyrightHeader)->run(); | ||
} | ||
|
||
/** | ||
* Bump Version placeholder __DEPLOY_VERSION__ in this project. (Set the version up in the jorobo.ini) | ||
* | ||
* @return void | ||
* | ||
* @since 1.0.0 | ||
*/ | ||
public function bump() | ||
{ | ||
(new \Joomla\Jorobo\Tasks\BumpVersion())->run(); | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" ?> | ||
<updates> | ||
<update> | ||
<name>pkg_agosms</name> | ||
<description>pkg_agosms</description> | ||
<element>agosms</element> | ||
<type>package</type> | ||
<client>site</client> | ||
<version>1.0.26</version> | ||
<infourl title="aggpxtrack">https://github.com/astridx/pkg_agosms/blob/v1.0.26/README.md</infourl> | ||
<downloads> | ||
<downloadurl type="full" format="zip">https://github.com/astridx/pkg_agosms/releases/download/v1.0.26/pkg_agosm.zip</downloadurl> | ||
</downloads> | ||
<tags> | ||
<tag>stable</tag> | ||
</tags> | ||
<maintainer>Astrid Günther</maintainer> | ||
<maintainerurl>https://astrid-guenther.de</maintainerurl> | ||
<targetplatform name="joomla" version="3.[789]"/> | ||
</update> | ||
</updates> |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "astrid/plg_fields_agosmmapwithmarker", | ||
"require": { | ||
"joomla-projects/jorobo": "^0.7.0" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "astridx", | ||
"email": "[email protected]" | ||
} | ||
] | ||
} |
Oops, something went wrong.