1 <?php
2 /**
3 * @package Joomla.Platform
4 * @subpackage GitHub
5 *
6 * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
7 * @license GNU General Public License version 2 or later; see LICENSE
8 */
9
10 defined('JPATH_PLATFORM') or die;
11
12 /**
13 * GitHub API Activity class for the Joomla Platform.
14 *
15 * @since 3.3 (CMS)
16 * @deprecated 4.0 Use the `joomla/github` package via Composer instead
17 *
18 * @documentation https://developer.github.com/v3/activity/
19 *
20 * @property-read JGithubPackageActivityEvents $events GitHub API object for markdown.
21 */
22 class JGithubPackageActivity extends JGithubPackage
23 {
24 protected $name = 'Activity';
25
26 protected $packages = array('events', 'notifications', 'starring', 'watching');
27 }
28