summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control48
1 files changed, 48 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..8a9c288
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,48 @@
+Source: php-easyrdf
+Priority: optional
+Maintainer: Debian PHP PEAR Maintainers <pkg-php-pear@lists.alioth.debian.org>
+Uploaders:
+ Marco Villegas <marco@marvil07.net>,
+Build-Depends:
+ curl,
+ debhelper-compat (= 13),
+ phpab,
+ pkg-php-tools,
+Standards-Version: 4.5.0
+Section: php
+Homepage: https://www.easyrdf.org/
+Vcs-Browser: https://salsa.debian.org/php-team/pear/php-easyrdf
+Vcs-Git: https://salsa.debian.org/php-team/pear/php-easyrdf.git
+Rules-Requires-Root: no
+
+Package: php-easyrdf
+Architecture: all
+Depends:
+ php-xml,
+ ${misc:Depends},
+ ${phpcomposer:Debian-require},
+Suggests:
+ ${phpcomposer:Debian-suggest},
+ graphviz,
+ raptor2-utils,
+Provides:
+ ${phpcomposer:Debian-provide},
+Description: PHP library to consume and produce RDF
+ EasyRdf is a PHP library to consume and produce RDF.
+ Resource Description Framework, RDF, is an official W3C Recommendation
+ for Semantic Web data models.
+ .
+ After parsing EasyRdf builds up a graph of PHP objects that can then be
+ walked around to get the data to be placed on the page.
+ Dump methods are available to inspect what data is available during
+ development.
+ .
+ Data is typically loaded into a EasyRdf_Graph object from source RDF
+ documents, loaded from the web via HTTP.
+ The EasyRdf_GraphStore class can load and save data on a SPARQL 1.1
+ Graph Store.
+ .
+ SPARQL queries can be made over HTTP to a Triplestore using the
+ EasyRdf_Sparql_Client class.
+ SELECT and ASK queries will return an EasyRdf_Sparql_Result object and
+ CONSTRUCT and DESCRIBE queries will return an EasyRdf_Graph object.