Minor dependency updates
[yaffs-website] / vendor / easyrdf / easyrdf / lib / EasyRdf.php
1 <?php
2
3 /**
4  * EasyRdf
5  *
6  * Use this file to load the core of EasyRdf, if you don't have an autoloader.
7  *
8  *
9  * LICENSE
10  *
11  * Copyright (c) 2009-2013 Nicholas J Humfrey.  All rights reserved.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright notice,
18  *    this list of conditions and the following disclaimer in the documentation
19  *    and/or other materials provided with the distribution.
20  * 3. The name of the author 'Nicholas J Humfrey" may be used to endorse or
21  *    promote products derived from this software without specific prior
22  *    written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34  * POSSIBILITY OF SUCH DAMAGE.
35  *
36  * @package    EasyRdf
37  * @copyright  Copyright (c) 2011-2013 Nicholas J Humfrey
38  * @license    http://www.opensource.org/licenses/bsd-license.php
39  */
40
41 /**
42  * @see EasyRdf_Exception
43  */
44 require_once "EasyRdf/Exception.php";
45
46 /**
47  * @see EasyRdf_Format
48  */
49 require_once "EasyRdf/Format.php";
50
51 /**
52  * @see EasyRdf_Graph
53  */
54 require_once "EasyRdf/Graph.php";
55
56 /**
57  * @see EasyRdf_GraphStore
58  */
59 require_once "EasyRdf/GraphStore.php";
60
61 /**
62  * @see EasyRdf_Http
63  */
64 require_once "EasyRdf/Http.php";
65
66 /**
67  * @see EasyRdf_Http_Client
68  */
69 require_once "EasyRdf/Http/Client.php";
70
71 /**
72  * @see EasyRdf_Http_Response
73  */
74 require_once "EasyRdf/Http/Response.php";
75
76 /**
77  * @see EasyRdf_Isomorphic
78  */
79 require_once "EasyRdf/Isomorphic.php";
80
81 /**
82  * @see EasyRdf_Namespace
83  */
84 require_once "EasyRdf/Namespace.php";
85
86 /**
87  * @see EasyRdf_Literal
88  */
89 require_once "EasyRdf/Literal.php";
90
91 /**
92  * @see EasyRdf_Literal_Boolean
93  */
94 require_once "EasyRdf/Literal/Boolean.php";
95
96 /**
97  * @see EasyRdf_Literal_Date
98  */
99 require_once "EasyRdf/Literal/Date.php";
100
101 /**
102  * @see EasyRdf_Literal_DateTime
103  */
104 require_once "EasyRdf/Literal/DateTime.php";
105
106 /**
107  * @see EasyRdf_Literal_Decimal
108  */
109 require_once "EasyRdf/Literal/Decimal.php";
110
111 /**
112  * @see EasyRdf_Literal_HexBinary
113  */
114 require_once "EasyRdf/Literal/HexBinary.php";
115
116 /**
117  * @see EasyRdf_Literal_HTML
118  */
119 require_once "EasyRdf/Literal/HTML.php";
120
121 /**
122  * @see EasyRdf_Literal_Integer
123  */
124 require_once "EasyRdf/Literal/Integer.php";
125
126 /**
127  * @see EasyRdf_Literal_XML
128  */
129 require_once "EasyRdf/Literal/XML.php";
130
131 /**
132  * @see EasyRdf_ParsedUri
133  */
134 require_once "EasyRdf/ParsedUri.php";
135
136 /**
137  * @see EasyRdf_Parser
138  */
139 require_once "EasyRdf/Parser.php";
140
141 /**
142  * @see EasyRdf_Parser_Exception
143  */
144 require_once "EasyRdf/Parser/Exception.php";
145
146 /**
147  * @see EasyRdf_Parser_RdfPhp
148  */
149 require_once "EasyRdf/Parser/RdfPhp.php";
150
151 /**
152  * @see EasyRdf_Parser_Ntriples
153  */
154 require_once "EasyRdf/Parser/Ntriples.php";
155
156 /**
157  * @see EasyRdf_Parser_Json
158  */
159 require_once "EasyRdf/Parser/Json.php";
160
161 /**
162  * @see EasyRdf_Parser_Rdfa
163  */
164 require_once "EasyRdf/Parser/Rdfa.php";
165
166 /**
167  * @see EasyRdf_Parser_RdfXml
168  */
169 require_once "EasyRdf/Parser/RdfXml.php";
170
171 /**
172  * @see EasyRdf_Parser_Turtle
173  */
174 require_once "EasyRdf/Parser/Turtle.php";
175
176 /**
177  * @see EasyRdf_Resource
178  */
179 require_once "EasyRdf/Resource.php";
180
181 /**
182  * @see EasyRdf_Collection
183  */
184 require_once "EasyRdf/Collection.php";
185
186 /**
187  * @see EasyRdf_Container
188  */
189 require_once "EasyRdf/Container.php";
190
191 /**
192  * @see EasyRdf_Serialiser
193  */
194 require_once "EasyRdf/Serialiser.php";
195
196 /**
197  * @see EasyRdf_Serialiser_GraphViz
198  */
199 require_once "EasyRdf/Serialiser/GraphViz.php";
200
201 /**
202  * @see EasyRdf_Serialiser_RdfPhp
203  */
204 require_once "EasyRdf/Serialiser/RdfPhp.php";
205
206 /**
207  * @see EasyRdf_Serialiser_Ntriples
208  */
209 require_once "EasyRdf/Serialiser/Ntriples.php";
210
211 /**
212  * @see EasyRdf_Serialiser_Json
213  */
214 require_once "EasyRdf/Serialiser/Json.php";
215
216 /**
217  * @see EasyRdf_Serialiser_RdfXml
218  */
219 require_once "EasyRdf/Serialiser/RdfXml.php";
220
221 /**
222  * @see EasyRdf_Serialiser_Turtle
223  */
224 require_once "EasyRdf/Serialiser/Turtle.php";
225
226 /**
227  * @see EasyRdf_Sparql_Client
228  */
229 require_once "EasyRdf/Sparql/Client.php";
230
231 /**
232  * @see EasyRdf_Sparql_Result
233  */
234 require_once "EasyRdf/Sparql/Result.php";
235
236 /**
237  * @see EasyRdf_TypeMapper
238  */
239 require_once "EasyRdf/TypeMapper.php";
240
241 /**
242  * @see EasyRdf_Utils
243  */
244 require_once "EasyRdf/Utils.php";