1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

An interface for communicating with Twitter's public API.

Send status updates, fetch information, add friends, etc.

WWW: http://pear.php.net/package/Services_Twitter/

PR:		ports/128647
Submitted by:	Wen Heping <wenheping at gmail.com>
This commit is contained in:
Martin Wilke 2008-11-08 20:00:31 +00:00
parent 86eed1fab8
commit 3a16e6b412
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=222554
4 changed files with 70 additions and 0 deletions

View File

@ -685,6 +685,7 @@
SUBDIR += pear-Net_Whois
SUBDIR += pear-SOAP
SUBDIR += pear-Services_Pingback
SUBDIR += pear-Services_Twitter
SUBDIR += pear-URI_Template
SUBDIR += pear-XML_RPC
SUBDIR += pear-XML_RPC2

View File

@ -0,0 +1,62 @@
# Ports collection makefile for: pear-Services_Twitter
# Date created: 2008-11-06
# Whom: Wen Heping <wenheping@gmail.com>
#
# $FreeBSD$
#
PORTNAME= Services_Twitter
PORTVERSION= 0.2.0
CATEGORIES= net www pear
MAINTAINER= wenheping@gmail.com
COMMENT= PHP interface to Twitter's API
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear \
${PEARDIR}/Validate.php:${PORTSDIR}/devel/pear-Validate
RUN_DEPENDS= ${BUILD_DEPENDS}
USE_PHP= curl
CATEGORY= Net
FILES= Services/Twitter.php Services/Twitter/Account.php \
Services/Twitter/Common.php \
Services/Twitter/DirectMessages.php \
Services/Twitter/Exception.php \
Services/Twitter/Favorites.php \
Services/Twitter/Friendships.php \
Services/Twitter/Notifications.php \
Services/Twitter/Search.php \
Services/Twitter/Statuses.php \
Services/Twitter/Users.php
TESTS= 005-services-twitter-statuses-public-timeline.phpt \
006-services-twitter-statuses-friends-timeline.phpt \
007-services-twitter-statuses-user-timeline.phpt \
010-services-twitter-statuses-show.phpt \
015-services-twitter-statuses-replies.phpt \
020-services-twitter-statuses-update.phpt \
025-services-twitter-statuses-destroy.phpt \
026-services-twitter-statuses-friends.phpt \
027-services-twitter-statuses-followers.phpt \
028-services-twitter-statuses-featured.phpt \
030-services-twitter-exception.phpt \
100-services-twitter-users-show.phpt \
200-services-twitter-direct-messages.phpt \
205-services-twitter-direct-messages-sent.phpt \
210-services-twitter-direct-messages-new.phpt \
215-services-twitter-direct-messages-destroy.phpt \
300-services-twitter-friendships-create.phpt \
305-services-twitter-friendships-destroy.phpt \
400-services-twitter-account-verify-credentials.phpt \
405-services-twitter-account-end-session.phpt \
410-services-twitter-account-archive.phpt \
500-services-twitter-favorites.phpt \
505-services-twitter-favorites-create.phpt \
510-services-twitter-favorites-destroy.phpt \
600-services-twitter-notifications-leave.phpt \
605-services-twitter-notifications-follow.phpt \
tests-config.php.example
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
.include <bsd.port.post.mk>

View File

@ -0,0 +1,3 @@
MD5 (PEAR/Services_Twitter-0.2.0.tgz) = 6d43a0d450157832614730c432e371c7
SHA256 (PEAR/Services_Twitter-0.2.0.tgz) = 11229dd17e68d2f3c96311fe5669f3f1418de531d910af24f83ec24c8f99d899
SIZE (PEAR/Services_Twitter-0.2.0.tgz) = 13870

View File

@ -0,0 +1,4 @@
An interface for communicating with Twitter's public API.
Send status updates, fetch information, add friends, etc.
WWW: http://pear.php.net/package/Services_Twitter/