Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
astridx committed Dec 9, 2018
1 parent b4a117f commit bee5068
Show file tree
Hide file tree
Showing 431 changed files with 148,443 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
vendor/
sik/
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

103 changes: 103 additions & 0 deletions RoboFile.php
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();
}
}
21 changes: 21 additions & 0 deletions agosms-update.xml
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>
12 changes: 12 additions & 0 deletions composer.json
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]"
}
]
}
Loading

0 comments on commit bee5068

Please sign in to comment.