-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.xml
132 lines (125 loc) · 4.48 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?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_Autoload</name>
<channel>pear2.php.net</channel>
<summary>Standard Autoloader for PEAR2
</summary>
<description>
PEAR2_Autoload is the standard method of class loading for
development and low-volume web sites using PEAR2 packages.
To use:
<?php
require '/path/to/PEAR2/Autoload.php';
// Now use class names from installed PEAR2 packages at will
// You can also inclue other PEAR2 registries
// require '/other/pear2/repo/PEAR2/Autoload.php';
// or manually
// PEAR2\Autoload::initialize('/other/pear2/repo');
?></description>
<lead>
<name>Gregory Beaver</name>
<user>cellog</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>Brett Bieber</name>
<user>saltybeagle</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<contributor>
<name>Clay Loveless</name>
<user>clay</user>
<email>[email protected]</email>
<active>yes</active>
</contributor>
<contributor>
<name>Vasil Rangelov</name>
<user>boen_robot</user>
<email>[email protected]</email>
<active>yes</active>
</contributor>
<date>2016-11-15</date>
<time>00:58:49</time>
<version>
<release>0.3.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>- Added ability to autoload traits.
- Added ability to prepend paths instead of appending them,
and specifying them as PATH_SEPARATOR separated list.
- Fixed GH #3 - Exceptions are not thrown if there are other registered
autoloaders at the time of the failed autoloading.
- This package is now installable from PEAR.
- CS fixes.
</notes>
<contents>
<dir name="/">
<dir name="src" baseinstalldir="/">
<dir name="PEAR2">
<file role="php" name="Autoload.php">
<tasks:replace type="package-info" to="version" from="@PACKAGE_VERSION@"/>
<tasks:replace type="package-info" to="version" from="GIT: $Id$"/>
</file>
</dir>
</dir>
<dir name="tests" baseinstalldir="/">
<dir name="_files">
<dir name="testDir1">
<file role="test" name="Foo.php"/>
<file role="test" name="FooTrait.php"/>
</dir>
</dir>
<file role="test" name="initialize_basic001.phpt">
<tasks:replace type="pear-config" to="php_dir" from="../src"/>
</file>
<file role="test" name="initialize_basic002.phpt">
<tasks:replace type="pear-config" to="php_dir" from="../src"/>
</file>
<file role="test" name="initialize_basic003.phpt">
<tasks:replace type="pear-config" to="php_dir" from="../src"/>
</file>
<file role="test" name="initialize_basic004.phpt">
<tasks:replace type="pear-config" to="php_dir" from="../src"/>
</file>
<file role="test" name="initialize_basic005.phpt">
<tasks:replace type="pear-config" to="php_dir" from="../src"/>
</file>
<file role="test" name="initialize_trait001.phpt">
<tasks:replace type="pear-config" to="php_dir" from="../src"/>
</file>
<file role="test" name="run-tests.php.inc"/>
</dir>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.3.0</min>
</php>
<pearinstaller>
<min>1.9.5</min>
</pearinstaller>
</required>
</dependencies>
<phprelease>
<filelist>
<install name="src/PEAR2/Autoload.php" as="PEAR2/Autoload.php"/>
<install name="tests/initialize_basic001.phpt" as="initialize_basic001.phpt"/>
<install name="tests/initialize_basic002.phpt" as="initialize_basic002.phpt"/>
<install name="tests/initialize_basic003.phpt" as="initialize_basic003.phpt"/>
<install name="tests/initialize_basic004.phpt" as="initialize_basic004.phpt"/>
<install name="tests/initialize_basic005.phpt" as="initialize_basic005.phpt"/>
<install name="tests/initialize_trait001.phpt" as="initialize_trait001.phpt"/>
<install name="tests/run-tests.php.inc" as="run-tests.php.inc"/>
<install name="tests/_files/testDir1/Foo.php" as="_files/testDir1/Foo.php"/>
<install name="tests/_files/testDir1/FooTrait.php" as="_files/testDir1/FooTrait.php"/>
</filelist>
</phprelease>
</package>