-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage_compatible.xml
95 lines (91 loc) · 6.44 KB
/
package_compatible.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?xml version="1.0" encoding="UTF-8"?>
<package version="2.1" xmlns="http://pear.php.net/dtd/package-2.1" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.1 http://pear.php.net/dtd/package-2.1.xsd">
<name>PEAR2_Services_NYTimes</name>
<channel>pear2.php.net</channel>
<summary>A wrapper for APIs of the NYTimes.
</summary>
<description>
Currently supported:
* Newswire: http://developer.nytimes.com/docs/read/times_newswire_api
* Article Search (query:url only): http://developer.nytimes.com/docs/read/article_search_api
</description>
<lead>
<name>Till Klampaeckel</name>
<user>till</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2011-07-09</date>
<time>21:50:27</time>
<version>
<release>0.1.0</release>
<api>0.1.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">New BSD License</license>
<notes>Initial 0.1.0 release/POC.
* Newswire API: fully is supported
* Article Search API: currently only 'query:url' is supported
* Testsuite
* all features are covered by tests
* 'live' tests are all mocked
Work in progress.
</notes>
<contents>
<dir name="/">
<file role="test" name="test/pear2.php.net/PEAR2_Services_NYTimes/TestInit.php"/>
<file role="test" name="test/pear2.php.net/PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/TestCase.php"/>
<file role="test" name="test/pear2.php.net/PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/NewswireTest.php"/>
<file role="test" name="test/pear2.php.net/PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/MainTest.php"/>
<file role="test" name="test/pear2.php.net/PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/BaseTest.php"/>
<file role="test" name="test/pear2.php.net/PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/ArticlesearchTest.php"/>
<file role="test" name="test/pear2.php.net/PEAR2_Services_NYTimes/phpunit.xml"/>
<file role="test" name="test/pear2.php.net/PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/shuttle-article.php"/>
<file role="test" name="test/pear2.php.net/PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/shuttle-article-xml.php"/>
<file role="test" name="test/pear2.php.net/PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/shuttle-article-sphp.php"/>
<file role="test" name="test/pear2.php.net/PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/get-sections.php"/>
<file role="test" name="test/pear2.php.net/PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/get-items.php"/>
<file role="test" name="test/pear2.php.net/PEAR2_Services_NYTimes/fixtures/articlesearch/v1/fixtures/articlesearch/v1/by-url.php"/>
<file role="php" name="php/PEAR2/Services/NYTimes/NYTimesInterface.php"/>
<file role="php" name="php/PEAR2/Services/NYTimes/Newswire.php"/>
<file role="php" name="php/PEAR2/Services/NYTimes/Main.php"/>
<file role="php" name="php/PEAR2/Services/NYTimes/Base.php"/>
<file role="php" name="php/PEAR2/Services/NYTimes/Articlesearch.php"/>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.2.0</min>
</php>
<pearinstaller>
<min>1.4.8</min>
</pearinstaller>
</required>
</dependencies>
<phprelease>
<filelist>
<install name="php/PEAR2/Services/NYTimes/Articlesearch.php" as="PEAR2/Services/NYTimes/Articlesearch.php"/>
<install name="php/PEAR2/Services/NYTimes/Base.php" as="PEAR2/Services/NYTimes/Base.php"/>
<install name="php/PEAR2/Services/NYTimes/Main.php" as="PEAR2/Services/NYTimes/Main.php"/>
<install name="php/PEAR2/Services/NYTimes/Newswire.php" as="PEAR2/Services/NYTimes/Newswire.php"/>
<install name="php/PEAR2/Services/NYTimes/NYTimesInterface.php" as="PEAR2/Services/NYTimes/NYTimesInterface.php"/>
<install name="test/pear2.php.net/PEAR2_Services_NYTimes/fixtures/articlesearch/v1/fixtures/articlesearch/v1/by-url.php" as="PEAR2_Services_NYTimes/fixtures/articlesearch/v1/fixtures/articlesearch/v1/by-url.php"/>
<install name="test/pear2.php.net/PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/get-items.php" as="PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/get-items.php"/>
<install name="test/pear2.php.net/PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/get-sections.php" as="PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/get-sections.php"/>
<install name="test/pear2.php.net/PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/shuttle-article-sphp.php" as="PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/shuttle-article-sphp.php"/>
<install name="test/pear2.php.net/PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/shuttle-article-xml.php" as="PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/shuttle-article-xml.php"/>
<install name="test/pear2.php.net/PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/shuttle-article.php" as="PEAR2_Services_NYTimes/fixtures/newswire/v3/fixtures/newswire/v3/shuttle-article.php"/>
<install name="test/pear2.php.net/PEAR2_Services_NYTimes/phpunit.xml" as="PEAR2_Services_NYTimes/phpunit.xml"/>
<install name="test/pear2.php.net/PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/ArticlesearchTest.php" as="PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/ArticlesearchTest.php"/>
<install name="test/pear2.php.net/PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/BaseTest.php" as="PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/BaseTest.php"/>
<install name="test/pear2.php.net/PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/MainTest.php" as="PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/MainTest.php"/>
<install name="test/pear2.php.net/PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/NewswireTest.php" as="PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/NewswireTest.php"/>
<install name="test/pear2.php.net/PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/TestCase.php" as="PEAR2_Services_NYTimes/Services/NYTimes/Services/NYTimes/TestCase.php"/>
<install name="test/pear2.php.net/PEAR2_Services_NYTimes/TestInit.php" as="PEAR2_Services_NYTimes/TestInit.php"/>
</filelist>
</phprelease>
</package>