forked from whatthejeff/breeze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.xml.dist
90 lines (90 loc) · 3.45 KB
/
package.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.8.0" 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>Breeze</name>
<channel>pear.breezephp.com</channel>
<summary>A micro-framework for PHP.</summary>
<description>Breeze is a simple and intuitive micro-framework for PHP 5.3+.</description>
<lead>
<name>Jeff Welch</name>
<user>whatthejeff</user>
<email>whatthejeff@gmail.com</email>
<active>yes</active>
</lead>
<date>@date@</date>
<version>
<release>0.2.0</release>
<api>0.2.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://github.com/whatthejeff/breeze/raw/master/LICENSE">New BSD License</license>
<notes>http://github.com/whatthejeff/breeze/raw/master/CHANGES.md</notes>
<contents>
<dir name="/">
<file name="AUTHORS.md" role="doc" />
<dir name="bin">
<file name="breeze" role="script">
<tasks:replace from="@data_dir@" to="data_dir" type="pear-config" />
</file>
</dir>
<dir name="Breeze">
<file name="Application.php" role="php" />
<dir name="plugins">
<file name="Dwoo.php" role="php" />
<file name="Flashhash.php" role="php" />
<file name="Smarty.php" role="php" />
</dir>
</dir>
<file name="Breeze.php" role="php" />
<file name="CHANGES.md" role="doc" />
<file name="INSTALL.md" role="doc" />
<file name="LICENSE" role="doc" />
<file name="README.md" role="doc" />
<dir name="skeleton">
<dir name="complex">
<file name="bootstrap.php" role="data" />
<dir name="controllers">
<file name="Index.php" role="data" />
</dir>
<dir name="public">
<file name="index.php" role="data" />
</dir>
<dir name="views">
<file name="index.php" role="data" />
<file name="layout.php" role="data" />
</dir>
</dir>
<dir name="simple">
<file name="controller.php" role="data" />
<dir name="public">
<file name="index.php" role="data" />
</dir>
<dir name="views">
<file name="index.php" role="data" />
<file name="layout.php" role="data" />
</dir>
</dir>
</dir>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.3</min>
</php>
<pearinstaller>
<min>1.6.1</min>
</pearinstaller>
</required>
</dependencies>
<phprelease>
<filelist>
<install as="breeze" name="bin/breeze" />
</filelist>
</phprelease>
</package>