This repository has been archived by the owner on Mar 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.xml
78 lines (78 loc) · 2.92 KB
/
package.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
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.9.4" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" 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.0 http://pear.php.net/dtd/package-2.0.xsd">
<name>Classy</name>
<channel>bronto.github.com/pear</channel>
<summary>Class Interceptor</summary>
<description>bronto/Classy enables unit tests to intercept any class's method calls so expectations may be enforced</description>
<lead>
<name>Ed Dawley</name>
<user>eddawley</user>
<email>ed@eddawley.com</email>
<active>yes</active>
</lead>
<date>2014-01-10</date>
<time>15:00:00</time>
<version>
<release>0.3.0</release>
<api>0.3.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache License, Version 2.0</license>
<notes>
Initial release
</notes>
<contents>
<dir baseinstalldir="/" name="/">
<dir name="library">
<file name="Classy.php" role="php" />
<file name="bootstrap.php" role="php" />
<dir name="Classy">
<file name="Autoloader.php" role="php" />
<file name="Cache.php" role="php" />
<file name="IniHelper.php" role="php" />
<file name="Interceptor.php" role="php" />
<file name="Parser.php" role="php" />
<file name="ParserFactory.php" role="php" />
<file name="SourceFile.php" role="php" />
<file name="SourceFileFactory.php" role="php" />
<dir name="NodeVisitor">
<file name="Classifizer.php" role="php" />
</dir>
</dir>
</dir>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.3.0</min>
</php>
<pearinstaller>
<min>1.9.4</min>
</pearinstaller>
<package>
<name>PHPParser</name>
<channel>nikic.github.com/pear</channel>
<min>0.9.4</min>
</package>
</required>
</dependencies>
<phprelease>
<filelist>
<install name="library/bootstrap.php" as="Classy/bootstrap.php"/>
<install name="library/Classy.php" as="Classy.php"/>
<install name="library/Classy/Autoloader.php" as="Classy/Autoloader.php"/>
<install name="library/Classy/Cache.php" as="Classy/Cache.php"/>
<install name="library/Classy/IniHelper.php" as="Classy/IniHelper.php"/>
<install name="library/Classy/Interceptor.php" as="Classy/Interceptor.php"/>
<install name="library/Classy/NodeVisitor/Classifizer.php" as="Classy/NodeVisitor/Classifizer.php"/>
<install name="library/Classy/Parser.php" as="Classy/Parser.php"/>
<install name="library/Classy/ParserFactory.php" as="Classy/ParserFactory.php"/>
<install name="library/Classy/SourceFile.php" as="Classy/SourceFile.php"/>
<install name="library/Classy/SourceFileFactory.php" as="Classy/SourceFileFactory.php"/>
</filelist>
</phprelease>
</package>